/* ================== Auth Pages Styles ================== */
.auth-wrapper {
    display: flex;
    min-height: 100vh;
    background-color: var(--bg-main);
}

.auth-sidebar {
    flex: 1;
    background: linear-gradient(135deg, var(--primary) 0%, #46227a 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.auth-sidebar::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(39, 182, 123, 0.3) 0%, transparent 60%);
    border-radius: 50%;
}

.auth-sidebar-content {
    position: relative;
    z-index: 1;
}

.auth-sidebar h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.auth-sidebar p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.auth-content {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-card {
    background: white;
    width: 100%;
    max-width: 480px;
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.auth-card h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.auth-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.auth-card .form-group {
    margin-bottom: 20px;
}

.auth-btn {
    width: 100%;
    margin-top: 10px;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--primary);
    font-weight: 600;
}

/* ================== Responsive Auth ================== */

@media (max-width: 992px) {
    .auth-wrapper {
        flex-direction: column;
    }

    .auth-sidebar {
        padding: 40px 20px;
        flex: none;
        text-align: center;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .auth-sidebar h1 {
        font-size: 2rem;
    }

    .auth-sidebar p {
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .auth-sidebar .logo {
        margin-bottom: 20px !important;
    }

    .auth-content {
        padding: 20px;
        margin-top: -30px; /* Overlap effect */
    }

    .auth-card {
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

@media (max-width: 576px) {
    .auth-sidebar h1 {
        font-size: 1.6rem;
    }

    .auth-card h2 {
        font-size: 1.5rem;
    }

    .auth-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
}

