body {
    font-family: 'Arial', sans-serif;
    background-color: #e0e0e0; /* Màu xám nhạt tương tự nền */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
}

.logo {
    width: 120px; /* Kích thước logo */
    margin-bottom: 15px;
}

h2 {
    color: #d32f2f; /* Màu đỏ đặc trưng của Highlands Coffee */
    margin-bottom: 30px;
    font-size: 1.5em;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.dropdown {
    position: relative;
    width: 100%;
}

.dropdown select {
    width: 100%;
    padding: 12px 40px 12px 15px; /* Tăng padding để chứa mũi tên */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    appearance: none; /* Ẩn dropdown mặc định của trình duyệt */
    background-color: white;
    cursor: pointer;
}

.dropdown-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none; /* Cho phép click qua mũi tên */
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box; /* Đảm bảo padding không làm tăng kích thước */
}


.btn-login {
    background-color: #d32f2f; /* Màu đỏ */
   color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #c62828; /* Màu đỏ sẫm hơn khi hover */
}

.forgot-password {
    display: block;
    text-decoration: none;
    color: #1976d2; /* Màu xanh dương */
    font-size: 0.9em;
    text-align: right;
}

.forgot-password:hover {
    text-decoration: underline;
} 