body{
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
text-align: center;
color: white;
display: flex;
margin: 0;
padding: 0;
}

a {
    text-decoration: none;
    color: #371800;
    font-weight: bold;
}

hr {
    border: none;
    border-top: 0.5px solid white;
    color: white;
    width: 20em;
    margin: 0;
    padding: 0;
    margin: auto;
}

.main-button{
    background-color: #FFD803;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 50px;
    border-radius: 10px;
    margin: 15px 0;
    justify-content: space-evenly;

}

.main-div{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    margin: 0 auto;
    background-image: url('/assets/background-one.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.boxes{
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.box{
    background-color: #FFD803;
    padding: 20px 40px 1px 40px;
    margin: 10px 20px;
    border-radius: 10px;

}

.title{
    font-weight: bold;
    font-size: 20px;
    padding: 20px 0 0 0;
    margin: 0;
}

.welcome-page{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.secure-terms{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -5rem;
}

.international-services, .lead-main, .thank-you {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.display-none{
    display: none;
}

.legal{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: whitesmoke;
    text-align: center;
    font-size: 10px;
}

.links{
    display: flex;
    align-items:baseline;
    justify-content: space-around;
    color: whitesmoke;
    text-decoration: none;
    width: 100%;

}

.styleterms{
    color: whitesmoke;
    text-decoration: none;
}

/* Form styling */
.code-label {
    display: block;
    margin-bottom: 10px;
}

.code-input {
    display: block;
    width: 200px;
    height: 30px;
    padding: 5px;
    margin: 0 auto 20px auto;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.custom-button {
    display: block;
    width: 100px;
    height: 30px;
    margin: 20px auto;
    background-color: #FFD803; /* Green */
    color: #371800;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.custom-button:hover {
    background-color: #FFD803; /* Darker green */
}

.form-code{
    padding: 40px 0;
}

input[type="radio"] {
    position: absolute;
    left: -9999px; /* Moves the radio button off-screen */
}

/* When radio button is checked, apply some style to the box */
input[type="radio"]:checked + .box-content {

    border: 2px solid #000; /* Or any border style you want when the box is selected */
}

input[type="email"],
input[type="tel"] {
    display: block;
    margin: 20px auto;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    width: 80%; /* Or whatever width you prefer */
}

input[type="submit"] {
    display: block;
    width: 160px;
    height: 40px;
    margin: 20px auto;
    background-color: #FFD803; /* Green */
    color: #371800;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.box-content{
    border: 2px solid transparent;
    display: flex;
    padding: 20px;
    width: 80px;
    height: 80px;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: #FFD803;
    border-radius: 10px;
    color: #371800;
    font-weight: 700;
    font-size: 14px;
    margin: 10px;
}

.question-image{
    width: 40px;
}

.option-box{
    display: flex;
    align-items: center;
}

.last-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-check{
    padding: 60px 0 40px 0;
}

.yes-no{
  width: 100%;
}
