.auth-page {
    min-height: 100vh;
    background: var(--light-bg);
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.auth-left {
    background: var(--gradient-primary);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.auth-branding {
    text-align: center;
    margin-bottom: 60px;
}

.auth-branding .logo-img {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.auth-branding h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.auth-branding p {
    font-size: 20px;
    opacity: 0.9;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.auth-feature i {
    font-size: 32px;
    color: var(--accent);
}

.auth-feature h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.auth-feature p {
    font-size: 14px;
    opacity: 0.9;
}

.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--light-bg);
}

.auth-box {
    width: 100%;
    max-width: 480px;
    background: var(--light-card);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h2 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--light-text-secondary);
}

.auth-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.auth-tab {
    flex: 1;
    padding: 12px 24px;
    border: 2px solid var(--light-border);
    background: transparent;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-tab.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--light-text-primary);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text-secondary);
}

.input-with-icon input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid var(--light-border);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary);
}

.otp-section {
    margin-top: 24px;
}

.otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.otp-digit {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid var(--light-border);
    border-radius: var(--radius-md);
}

.otp-digit:focus {
    outline: none;
    border-color: var(--primary);
}

.otp-timer {
    text-align: center;
    color: var(--light-text-secondary);
    font-size: 14px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    margin: 32px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--light-border);
}

.auth-divider span {
    background: var(--light-card);
    padding: 0 16px;
    color: var(--light-text-secondary);
    position: relative;
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--light-border);
}

.auth-footer p {
    color: var(--light-text-secondary);
    margin-bottom: 8px;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-help {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    
    .auth-left {
        display: none;
    }
    
    .auth-right {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .auth-box {
        padding: 32px 24px;
    }
    
    .otp-digit {
        width: 40px;
        height: 50px;
        font-size: 20px;
    }
}