﻿:root {
    --primary-orange: #F97316;
    --primary-orange-dark: #EA580C;
    --light-gray: #f8f9fa;
    --text-color: #495057;
    --border-color: #dee2e6;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-gray);
}

.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px; /* Thêm padding để không dính sát lề trên mobile */
}

.auth-wrapper {
    display: flex;
    width: 100%;
    max-width: 900px;
    min-height: 550px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Mặc định trên PC: Xếp ngang */
    flex-direction: row;
}

/* --- Cột bên trái (Logo) --- */
.auth-logo-pane {
    flex-basis: 45%; /* Chiếm 45% chiều rộng */
    background: linear-gradient(135deg, #FF9A50, var(--primary-orange));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

    .auth-logo-pane img {
        max-width: 120px;
        margin-bottom: 20px;
    }

    .auth-logo-pane h1 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .auth-logo-pane p {
        font-size: 1rem;
        opacity: 0.9;
    }

/* --- Cột bên phải (Form) --- */
.auth-form-pane {
    flex-basis: 55%; /* Chiếm 55% chiều rộng */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

    .auth-form-pane h2 {
        color: #333;
        font-weight: 600;
        margin-bottom: 25px;
    }

/* ... (Các class form-group, form-control, btn-submit giữ nguyên) ... */
.form-group {
    margin-bottom: 1.25rem;
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .form-control:focus {
        border-color: var(--primary-orange);
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    }

.btn-submit {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

    .btn-submit:hover {
        background-color: var(--primary-orange-dark);
    }

.auth-link {
    text-align: center;
    margin-top: 20px;
}

    .auth-link a {
        color: var(--primary-orange);
        text-decoration: none;
        font-weight: 500;
    }


/* ============================================
   RESPONSIVE: MÀN HÌNH NHỎ (MOBILE/TABLET)
   ============================================ */
@media (max-width: 768px) {
    .auth-wrapper {
        /* Chuyển sang xếp dọc */
        flex-direction: column;
        max-width: 450px; /* Giới hạn chiều rộng để trông gọn gàng */
        min-height: auto; /* Chiều cao tự động theo nội dung */
    }

    /* --- Điều chỉnh Logo Pane trên Mobile --- */
    .auth-logo-pane {
        flex-basis: auto; /* Không cố định chiều cao */
        width: 100%; /* Rộng full */
        padding: 30px 20px; /* Giảm padding */
        /* Đảm bảo nó hiện ra (nếu trước đây bạn để display: none) */
        display: flex;
    }

        .auth-logo-pane img {
            max-width: 80px; /* Logo nhỏ lại chút */
            margin-bottom: 10px;
        }

        .auth-logo-pane h1 {
            font-size: 1.5rem; /* Chữ nhỏ lại */
        }

    /* --- Điều chỉnh Form Pane trên Mobile --- */
    .auth-form-pane {
        flex-basis: auto;
        width: 100%;
        padding: 30px 25px; /* Padding vừa phải */
    }
}
