body {
    font-family: Arial, sans-serif;
    background-image : url("../../img/header.png");
    background-size: 100%;
    background-repeat: no-repeat;
    overflow-x:hidden;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.back_list {
    margin-bottom: 15px;
}
.back_list > a > img{
    height: 18px;
    margin-right: 10px;
}
.back_list > a {
    font-size: 24px;
    text-decoration: none;
    color: #5cb85c;
    padding: 4px;
    border-radius: 4px;

    &:hover {
        background-color: #034971;
        cursor: pointer;
    }
}
.vinForm_info{
    font-weight: 700;
    margin-bottom: 10px;
}
form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
input[type="text"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
}
button {
    padding: 10px 15px;
    border: none;
    background-color: #5cb85c;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}
button:hover {
    background-color: #4cae4c;
}
.result {
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
}
.result h2 {
    margin-top: 0;
}
.error {
    color: red;
}
table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid #ddd;
}
th, td {
    padding: 8px;
    text-align: left;
}
th {
    background-color: #5cb85c;
    color: white;
}
.info {
    margin-left: 10px;
    margin-top: 10px;
    font-size: 0.9em;
    color: #fff;
}