/* ---------------------------
   Giao diện đăng nhập UTEHY
----------------------------*/
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Khung tổng thể */
.container {
    width: 900px;
    max-width: 95%;
    margin: 60px auto;
    display: flex;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Cột bên trái – Hướng dẫn */
.left-panel {
    width: 45%;
    background-color: #e9f0f8;
    padding: 30px;
    box-sizing: border-box;
}

.left-panel h3 {
    color: #0056a6;
    margin-bottom: 20px;
}

.left-panel ol {
    padding-left: 20px;
    line-height: 1.6;
}

.left-panel a {
    color: #0056a6;
    text-decoration: none;
}

.left-panel a:hover {
    text-decoration: underline;
}

/* Cột bên phải – Form đăng nhập */
.right-panel {
    width: 55%;
    padding: 40px 50px;
    box-sizing: border-box;
}

.right-panel h2 {
    text-align: center;
    color: #0056a6;
    margin-bottom: 30px;
}

/* Radio vai trò */
.role-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.role-group label {
    font-size: 15px;
    color: #333;
}

input[type="radio"] {
    accent-color: #0056a6;
}

/* Ô nhập */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #0056a6;
    outline: none;
}

/* Nút đăng nhập và quên mật khẩu */
.btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button {
    background-color: #0056a6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #004080;
}

a.forgot {
    color: #0056a6;
    text-decoration: none;
    font-size: 14px;
}

a.forgot:hover {
    text-decoration: underline;
}

/* Logo và tiêu đề trên cùng */
.header {
    text-align: center;
    margin-top: 20px;
}

.header img {
    height: 70px;
}

.header h1 {
    color: #0056a6;
    font-size: 18px;
    margin: 8px 0 0 0;
}

.header h2 {
    font-size: 14px;
    color: #666;
    margin: 0;
}
