/* --- CÀI ĐẶT CƠ BẢN --- */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6; /* Màu nền xám xanh nhạt cho mát mắt */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* --- KHUNG CHỨA TOÀN BỘ FORM --- */
.auth-container {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* --- PHẦN TAB CHUYỂN ĐỔI --- */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
}
.tab-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: #f9f9f9;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #777;
    transition: all 0.3s ease;
    outline: none;
}
.tab-btn:hover {
    color: #4CAF50;
}

/* Tab đang được chọn sẽ sáng lên và có gạch chân xanh */
.tab-btn.active {
    background: #fff;
    color: #4CAF50;
    border-bottom: 3px solid #4CAF50;
}

/* --- PHẦN NỘI DUNG FORM --- */
.auth-form {
    display: none; /* Mặc định ẩn form đi */
    padding: 30px;
}
.auth-form.active {
    display: block; /* Chỉ hiện form nào có class 'active' */
}

.auth-form h2 {
    margin-top: 0;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* --- Ô NHẬP LIỆU --- */
.input-group {
    margin-bottom: 15px;
}
.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
    font-weight: bold;
}
.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
}

/* Viền sáng xanh khi click vào ô nhập */
.input-group input:focus {
    border-color: #4CAF50; 
}

/* --- QUÊN MẬT KHẨU --- */
.forgot-pass {
    text-align: right;
    margin-bottom: 20px;
}
.forgot-pass a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 13px;
}
.forgot-pass a:hover {
    text-decoration: underline;
}

/* --- NÚT BẤM CHÍNH --- */
.btn-submit {
    width: 100%;
    padding: 12px;
    border: none;
    background: #4CAF50;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-submit:hover {
    background: #388E3C;
}

/* Nút quay về trang chủ */
.back-home {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #777;
    text-decoration: none;
    font-size: 14px;
}
.back-home:hover {
    color: #333;
}