/* ===== SIGNUP PAGE ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at top left, #0d0d2e 0%, #0a0a0f 60%);
    padding: 40px 60px;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

/* LEFT SIDE */
.auth-brand h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-brand p {
    font-size: 16px;
    color: #aaaaaa;
    margin-bottom: 40px;
    line-height: 1.7;
}

.auth-perks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auth-perk {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.auth-perk .perk-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.auth-perk h4 {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.auth-perk p {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.5;
}

/* RIGHT SIDE */
.auth-form-box {
    background: #0d0d1a;
    border: 1px solid #1a1a2e;
    border-radius: 20px;
    padding: 40px;
}

.auth-form-box h2 {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 28px;
}

.auth-subtitle a {
    color: #00f5ff;
    text-decoration: none;
    font-weight: 700;
}

.auth-subtitle a:hover {
    text-decoration: underline;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-hint {
    font-size: 11px;
    color: #555555;
    margin-top: 4px;
    display: block;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #aaaaaa;
}

.form-checkbox input {
    margin-top: 2px;
    accent-color: #00f5ff;
    flex-shrink: 0;
}

.form-checkbox a {
    color: #00f5ff;
    text-decoration: none;
}

.error-message {
    font-size: 13px;
    color: #ff3232;
    text-align: center;
    min-height: 20px;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .auth-page {
        padding: 20px;
    }

    .auth-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .auth-brand h1 {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
/* ===== LOGIN PAGE ===== */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 20px;
}

.login-box {
    width: 100%;
    max-width: 480px;
}

.login-logo {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
}

.login-logo span {
    color: #00f5ff;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaaaaa;
    cursor: pointer;
}

.remember-me input {
    accent-color: #00f5ff;
}

.forgot-password {
    color: #00f5ff;
    text-decoration: none;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #1a1a2e;
}

.login-divider span {
    font-size: 12px;
    color: #555555;
    white-space: nowrap;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    background: #0a0a0f;
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    padding: 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Segoe UI', sans-serif;
}

.social-btn:hover {
    border-color: #00f5ff;
    color: #00f5ff;
}