body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.Container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Điều chỉnh chiều cao tối thiểu */
    padding: 10px;
}

.Form {
    background-color: #184785;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 350px; /* Tăng max-width cho phù hợp hơn với các thiết bị */
}

.Logo {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 10px rgba(247, 249, 250, 0.8);
    margin: 5px;
}

.Tieude {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.Textbox {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
}

select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"], input[type="button"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
}

input[type="submit"]:hover, input[type="button"]:hover {
    background-color: #0056b3;
}
.g-recaptcha {
    margin: 10px 0;
    display: flex;
    justify-content: center;
}
/* Thêm Media Query để điều chỉnh giao diện cho thiết bị nhỏ hơn */
@media (max-width: 600px) {
    .Tieude {
        font-size: 16px; /* Giảm kích thước chữ cho tiêu đề */
    }

    .Textbox, select, input[type="submit"], input[type="button"] {
        padding: 12px; /* Tăng padding để dễ tương tác */
        font-size: 14px; /* Điều chỉnh kích thước chữ cho các input */
    }

    .Logo {
        height: 40px; /* Điều chỉnh kích thước logo cho thiết bị nhỏ */
        width: 40px;
    }
    .Form {
        margin: 0 auto;
        padding: 10px;
        max-width: 350px;
    }
}
