/* ======================================================
   AUTHENTICATION PAGES (Login / Register)
   Yellow Modern Theme
   ====================================================== */

body {
    background: linear-gradient(135deg, #f5d348, #ffffff);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* ==== Shared Layout ==== */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.auth-card {
    background: #fff;
    border-radius: 25px;
    display: flex;
    overflow: hidden;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
    width: 900px;
    max-width: 95%;
}

/* ==== Left Section (Form Area) ==== */
.auth-left {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 10px;
}

.auth-left h3 {
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.form-control {
    border-radius: 10px;
    height: 45px;
}

.btn-primary {
    background: #ffcc00;
    border: none;
    border-radius: 10px;
    height: 45px;
    font-weight: 600;
    color: #000;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e6b800;
}

/* ==== Signup / Login Link ==== */
.auth-link {
    text-align: center;
    margin-top: 20px;
}

.auth-link a {
    color: #ff9900;
    font-weight: 600;
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* ==== Right Section (Illustration Area) ==== */
.auth-right {
    flex: 1;
    background: linear-gradient(135deg, #f5d348, #ffffff);
    color: #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.auth-right img {
    width: 80%;
    max-width: 350px;
    border-radius: 15px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.auth-right h4 {
    margin-top: 30px;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
    .auth-card {
        flex-direction: column;
    }

    .auth-right {
        display: none;
    }

    .auth-left {
        padding: 40px 25px;
    }
}
