body {
    font-family: system-ui, sans-serif;
    background-color: #ff0015;
    color: #ffffff;
    /* text-align: center; */
    padding-top: 10%;
    padding-left: 15%;
    padding-right: 15%;
}


h1 {
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
}

p {
    font-weight: 400;
    font-size: 16px;
    margin: 10px 0;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox] + label {
    /* display: flex; */
    align-items: center;
    cursor: pointer;
    font-size: 14px; /* Giảm kích thước font */
    color: #ffffff;
}

input[type=checkbox] + label:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    margin-right: 9px;
    transition: 0.2s;
    line-height: 14px;
}

input[type=checkbox]:checked + label:before {
    background-color: #ffffff;
    border-color: #ffffff;
    content: "✔";
    color: #ff0800;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    line-height: 14px;
}

p.more-info {
    margin-top: 40px;
    margin-bottom: 0px;
}


a {
    color: #ffffff;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

.buttons {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

button {
    font-family: system-ui, sans-serif;
    background: #ff0800;    
    color: white;
    border: #ffffff 1px solid;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;

}

button:hover {
    color: #ff0800;
    background: #ffffff;
}

.hidden {
    display: none;
}

a.privacy {
    margin-left: 25px;
    font-size: 14px;
}
