.login-wrapper {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: radial-gradient(1200px 600px at 20% -10%, #ffffff 0%, #faf9f5 40%, #f5f3ee 100%);
    padding: 106px 0;
}
.login-box {
    background: #fff;
    border-radius: 18px;
    padding: 44px 38px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
    border: 1px solid #eef0f3;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}
.login-header {
    text-align: center;
    margin-bottom: 22px;
}
.login-badge {
    display: inline-block;
    background: #0f172a;
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.login-title {
    font-size: clamp(28px, 4.4vw, 40px);
    font-weight: 900;
    color: #0b0b0b;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 8px 0;
}
.login-subtitle {
    color: #616a76;
    font-size: 14px;
    margin: 0;
}

/* Form */



.form-input:focus {
    outline: none;
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.10);
}
.row-remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 16px 0;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
}
.form-link {
    font-size: 13px;
    color: #0b0b0b;
    font-weight: 700;
    text-decoration: none;
}
.form-link:hover { text-decoration: underline; }

.btn-login {
    width: 100%;
    padding: 14px 16px;
    background: #0b0b0b;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    margin-top: 6px;
}
.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    background: #111111;
}

/* Alerts */


/* Footer text */
.signup-text {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 12px;
}
.signup-text a {
    color: #0b0b0b;
    font-weight: 800;
    text-decoration: none;
}
.signup-text a:hover { text-decoration: underline; }

.saunagus-link {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}
.saunagus-link a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}
.saunagus-link a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .login-box { padding: 30px 22px; }
}
