    :root {
        font-family: "Manrope", sans-serif, arial;
        --background: #0B1E3F;
        --logo-color1: #DD056D;
        --logo-color2: #083865;
        --border: #ccc;
        --text-light: #FFF;
        --text-dark: #1f2937;
        --shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
    }

    * {
        padding: 0;
        margin: 0;
        font-weight: 500;
        text-decoration: none;
        color: var(--text-dark);
        font-size: 16px;
        box-sizing: border-box;
        font-family: "Manrope", sans-serif, arial;
    }

    *::before {
        box-sizing: inherit;
    }

    *::after {
        box-sizing: inherit;
    }

    ::-moz-selection {
        color: var(--text-light);
        background: var(--logo-color1);
    }

    ::selection {
        color: var(--text-light);
        background: var(--logo-color1);
    }

    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    }

    main {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }

    h1 {
        font-size: 3rem;
    }

    #flash-container {
        position: fixed;
        top: 1rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: .75rem;
        pointer-events: none;
        width: 90%;
        max-width: 400px;
    }

    .flash {
        position: relative;
        overflow: hidden;
        padding: 1rem 1.5rem;
        border-radius: .75rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
        transform: translateY(-100%) scale(0.8);
        opacity: 0;
        animation-fill-mode: forwards;
        pointer-events: auto;
        cursor: pointer;
    }

    .flash--error {
        background: #ffecec;
        color: #b71c1c;
    }

    .flash--success {
        background: #e8f5e9;
        color: #1b5e20;
    }

    .flash::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 4px;
        background: rgba(0, 0, 0, .1);
        width: 100%;
        animation: progressBar linear forwards;
        animation-duration: 5s;
    }

    .flash:hover {
        animation-play-state: paused;
    }

    .flash:hover::after {
        animation-play-state: paused;
    }

    .flash--confirm {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background: #fff8e1;
        color: #856404;
    }

    .flash--confirm .button {
        background: var(--logo-color1);
        color: var(--text-light);
        padding: .5rem 1rem;
        border-radius: .5rem;
        text-decoration: none;
        display: inline-block;
        margin-top: .5rem;
    }

    .flash--confirm .button:hover {
        opacity: .9;
    }

    .flash {
        animation-fill-mode: both;
        animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    @keyframes slideIn {
        0% {
            transform: translateY(-120%) scale(0.85);
            opacity: 0;
        }

        60% {
            transform: translateY(5%) scale(1.02);
            opacity: 1;
        }

        100% {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
    }

    @keyframes slideOut {
        0% {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        100% {
            transform: translateY(-50%) scale(0.9);
            opacity: 0;
        }
    }

    @keyframes slideFadeOut {
        from {
            transform: translateY(0) scale(1);
            opacity: 1
        }

        to {
            transform: translateY(-50%) scale(0.8);
            opacity: 0
        }
    }

    @keyframes progressBar {
        from {
            width: 100%
        }

        to {
            width: 0
        }
    }

    footer p {
        text-align: center;
        padding: 2rem 0;
        color: #6b7280;
        font-size: 0.9rem;
        position: relative;
    }

    footer p::before {
        content: '✨';
        position: absolute;
        left: 50%;
        top: -1rem;
        transform: translateX(-50%);
        animation: sparkle 3s infinite ease-in-out;
    }

    @keyframes sparkle {

        0%,
        100% {
            opacity: 0;
            transform: translateY(0) scale(0.8);
        }

        50% {
            opacity: 1;
            transform: translateY(-10px) scale(1.2);
        }
    }

    .modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
        z-index: 90;
    }

    .modal-overlay.active {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }

    .modal {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.85);
        background: #ffffff;
        border-radius: 12px;
        padding: 2rem;
        width: 90%;
        max-width: 480px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
        opacity: 0;
        z-index: 100;
        transition: transform 0.3s cubic-bezier(.25, .8, .25, 1), opacity 0.3s ease-out;
    }

    .modal.active {
        display: block;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .modal-header {
        position: relative;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e5e7eb;
        margin-bottom: 1.5rem;
    }

    .modal-header h2 {
        margin: 0;
        font-size: 1.5rem;
        color: #111827;
    }

    .modal-close {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0.5rem;
        background: transparent;
        border: none;
        font-size: 1.25rem;
        cursor: pointer;
        color: #6b7280;
        transition: color 0.2s;
    }

    .modal-close:hover {
        color: #374151;
    }

    .modal form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .modal input[type="text"],
    .modal input[type="email"],
    .modal input[type="password"],
    .modal select {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        font-size: 1rem;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .modal input:focus,
    .modal select:focus {
        border-color: #4338ca;
        box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.2);
        outline: none;
    }

    .modal button[type="submit"] {
        align-self: flex-start;
        padding: 0.65rem 1.25rem;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        background: #4338ca;
        color: #ffffff;
        transition: background 0.2s, transform 0.1s;
    }

    .modal button[type="submit"]:hover {
        background: #3730a3;
        transform: translateY(-1px);
    }

    .checkbox-container {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
    }

    .checkbox-container input[type="checkbox"] {
        display: none;
    }

    .checkbox-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: row;
        padding: 0 0 0 35px;
        width: 100%;
        height: 24px;
    }

    .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 21.6px;
        width: 21.6px;
        padding: 0 0 2.5px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.08s ease-in-out;
        border-radius: 2.5px;
        border: black solid 1px;
        margin: 0 0 0 0;
    }

    .checkbox-container input:checked~.checkmark {
        background-color: #DD056D;
    }

    .checkbox-container input:checked~.checkmark:after {
        content: "";
        width: 7px;
        height: 12px;
        border: solid #FFF;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
    }

    .modal-bottom {
        display: flex;
        align-items: center;
        justify-content: center;
    }