
body {
    min-height: 100svh;
    margin: 0;
    padding: var(--container-pad);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #15131a;
    background:
        radial-gradient(1200px 700px at 20% 10%, rgba(255, 127, 163, .22), transparent 60%),
        radial-gradient(900px 600px at 80% 20%, rgba(255, 183, 214, .18), transparent 55%),
        radial-gradient(800px 500px at 55% 85%, rgba(244, 124, 162, .16), transparent 60%),
        linear-gradient(180deg, #fff, #fff7fb);
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.login-container {
    width: 100%;
    max-width: var(--card-max);
    margin: clamp(1.25rem, 6vh, 3.5rem) auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, .90), rgba(255, 255, 255, .72));
    border-radius: var(--radius-1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 55px rgba(19, 12, 29, .10);
    padding: var(--card-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .15s ease, box-shadow .25s ease;
}
.login-container:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 70px rgba(19, 12, 29, .14);
}

.login-logo {
        width: clamp(96px, 14vw, 132px);
        height: clamp(96px, 14vw, 132px);
    object-fit: contain;
        border-radius: var(--radius-0);
        padding: var(--space-2);
        background: linear-gradient(135deg, #ffffff 0%, #ffb7d6 100%);
        border: 1px solid rgba(255, 255, 255, .22);
        box-shadow:
            0 18px 50px rgba(255, 154, 197, .32),
            0 12px 30px rgba(255, 183, 214, .22);
        margin-bottom: var(--space-3);
    animation: logoPop 1.0s cubic-bezier(.5,1.8,.5,1) 1;
}

@keyframes logoPop {
    0% {transform: scale(0.7) translateY(-30px); opacity: 0;}
    60% {transform: scale(1.1) translateY(8px); opacity: 1;}
    100% {transform: scale(1) translateY(0);}
}

.login-container h2 {
    text-align: left;
    width: 100%;
    margin: 0 0 8px 0;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 4.2vw, 2.1rem);
    color: #15131a;
    font-weight: 700;
}

.login-container .subtitle {
    width: 100%;
    color: rgba(21, 19, 26, .70);
    font-size: clamp(0.98rem, 1.2vw, 1.06rem);
    margin-bottom: var(--space-4);
}

.input-group {
    width: 100%;
    margin-bottom: var(--space-3);
}
.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="password"] {
    width: 100%;
    padding: 13px 12px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 14px;
    font-size: 1rem;
    margin-bottom: 0;
    box-sizing: border-box;
    outline: none;
    transition: border .18s ease, box-shadow .22s ease, background .22s ease;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 10px 28px rgba(19, 12, 29, .06);
}
.input-group input[type="text"]:focus,
.input-group input[type="email"]:focus,
.input-group input[type="password"]:focus {
    border: 1px solid rgba(244, 124, 162, .72);
    box-shadow: 0 0 0 4px rgba(255, 127, 163, .18);
    background: #fff;
}

.continue-btn {
    width: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #ff9ac5 100%);
    color: #b01d5a;
    border: none;
    border-radius: 999px;
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    font-weight: 600;
    padding: calc(var(--space-2) + var(--space-0)) 0;
    margin-bottom: 0;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .25s ease, filter .25s ease;
    box-shadow: 0 14px 34px rgba(255, 154, 197, .24);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.continue-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 46px rgba(255, 154, 197, .32);
    filter: brightness(1.02);
}

.continue-btn.is-loading,
.continue-btn:disabled {
    cursor: not-allowed;
    opacity: .88;
    filter: none;
    transform: none;
}

.continue-btn.is-loading {
    color: transparent;
}

.continue-btn.is-loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-left: -9px;
    margin-top: -9px;
    border-radius: 50%;
    border: 2px solid rgba(176, 29, 90, .22);
    border-top-color: #b01d5a;
    animation: loginBtnSpin .65s linear infinite;
}

@keyframes loginBtnSpin {
    to {
        transform: rotate(360deg);
    }
}

.continue-btn.secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(21, 19, 26, .92);
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.10);
    box-shadow: 0 10px 28px rgba(19, 12, 29, .06);
}
.continue-btn.secondary:hover{
    filter: none;
    box-shadow: 0 18px 46px rgba(19, 12, 29, .10);
}

.login-actions{
    width: 100%;
    display: grid;
    gap: var(--space-2);
    margin-top: var(--space-2);
    text-align: center;
}

.text-link{
    text-decoration: none;
    color: rgba(255, 154, 197, .95);
    font-weight: 600;
    font-size: 1rem;
    transition: color .15s ease;
}
.text-link:hover{ color: rgba(244, 124, 162, .98); }

.login-container .error {
    color: #e74c3c;
    margin-bottom: 12px;
    text-align: center;
    font-size: 0.95rem;
}
/* Add this style for the shining text */
.shining-text {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(
        90deg,
        #ff7fa3,
        #fff,
        #ffb7d6,
        #fff,
        #ff7fa3
    );
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    text-align: center;
    margin-bottom: var(--space-3);
}

/* Keyframes for the shine effect */
@keyframes shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

