/* Đặt nền trắng cho toàn bộ trang */
body {
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 20px;
    
}

/* Định dạng cho phần logo */
.top-wordmark {
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: white;
    width: 100%;
    padding: 20px 0;
    position: absolute;
    top: 0;
}

.top-wordmark .wordmark {
    width: 104px;
    height: auto;
}

/* Định dạng cho form đăng nhập */
.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    margin-top: 100px;  /* Khoảng cách từ trên xuống dưới logo */
}

.login-form h2 {
    color: #333;
    margin-bottom: 20px;
}

/* Định dạng cho input */
.login-form input.nhap {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Định dạng cho button */
.login-form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #0066cc;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

/* Định dạng cho các liên kết và văn bản phụ */
.login-form .forgot-password,
.login-form .create-id {
    display: block;
    color: #0066cc;
    margin: 10px 0;
    text-decoration: none;
}

.login-form .forgot-password:hover,
.login-form .create-id:hover {
    text-decoration: underline;
}
.forgot-password{
    font-size: 12px;
}
.create-id{
    font-size: 12px;
}
.login-container button:hover,
.login-form button:hover{
    background-color: black; /* Thay đổi màu nền của nút khi di chuột vào */
    
}
.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container .nhap {
    flex: 1;
    padding-right: 40px; /* Để chừa không gian cho biểu tượng con mắt */
}

.password-container .toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
}

.password-container .toggle-password img {
    width: 20px;
    height: 20px;
}


