/* Auth Pages Styles */
.auth-page-bg {
    background-color: #f8fafc;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 15px;
}

.auth-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 30px;
}

.auth-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
}

.auth-sidebar {
    background-color: #d1fae5;
    padding: 50px 40px;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.auth-feature {
    text-align: center;
}

.auth-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 20px;
}

.auth-feature-icon.bg-purple { background-color: #6366f1; }
.auth-feature-icon.bg-green { background-color: #10b981; }
.auth-feature-icon.bg-yellow { background-color: #f59e0b; }

.auth-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.auth-feature p {
    font-size: 0.85rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

.auth-form-container {
    padding: 40px 50px;
    width: 55%;
}

.auth-tabs {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 30px;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    color: #9ca3af;
    position: relative;
    cursor: pointer;
    font-size: 0.95rem;
    text-decoration: none;
}

.auth-tab:hover {
    color: #6b7280;
}

.auth-tab.active {
    color: var(--primary);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.auth-social-btn {
    width: 100%;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    font-weight: 500;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    text-decoration: none;
}

.auth-social-btn img {
    width: 20px;
    height: 20px;
}

.auth-social-btn:hover {
    background: #f9fafb;
    color: #374151;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #9ca3af;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e5e7eb;
}

.auth-divider::before { margin-right: 15px; }
.auth-divider::after { margin-left: 15px; }

.auth-input-group {
    margin-bottom: 25px;
    position: relative;
}

.auth-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #d1d5db;
    padding: 10px 0;
    font-size: 0.95rem;
    background: transparent;
    transition: border-color 0.2s;
    color: #1f2937;
}

.auth-input:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.auth-input::placeholder {
    color: #9ca3af;
}

.auth-password-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.auth-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.auth-checkbox label {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.6;
}

.auth-checkbox label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

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

.auth-submit-btn {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: none;
}

.auth-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
}

.auth-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }
    .auth-sidebar,
    .auth-form-container {
        width: 100%;
    }
    .auth-sidebar {
        padding: 30px 20px;
    }
    .auth-form-container {
        padding: 30px 20px;
    }
}
