/* Reset mặc định */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Nền trang web */
body {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); /* Màu xanh gradient */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Khung chứa form đăng nhập */
.login-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-header h2 {
    color: #333;
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Ô nhập liệu */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 40px; /* Padding trái 40px để né cái icon ra */
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #1e3c72;
    box-shadow: 0 0 5px rgba(30, 60, 114, 0.2);
}

/* Nút đăng nhập */
.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #1e3c72;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-login:hover {
    background-color: #162b55;
}

/* Thông báo lỗi */
.error-msg {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: none; /* Mặc định ẩn */
}

/* Link quên mật khẩu */
.forgot-pass {
    margin-top: 15px;
}
.forgot-pass a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
}
.forgot-pass a:hover {
    text-decoration: underline;
}