/* styles.css */
html{background: url(assets/bg_full.jpg) !important; background-size: cover !important;}
@media(max-width: 959px){
    html{background: url(assets/bg.jpg) !important;}  
}
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0 auto;
}

p{color: #706F6F}
::placeholder{color: #EB6466}
.form, #form {border-radius: 0 0 25px 25px; max-width: 900px; margin-right: auto; margin-left: auto; background: rgb(255, 255, 255, 0.5)}

#form input, #form select {
    display: block; font-weight: 600;
    width: -webkit-fill-available; width: -moz-available;
    margin-bottom: 20px;
    padding: 22px;
    border-radius: 25px;
    background: #fff;
    font-size: 16px;
    font-style: italic;
    color: #EB6466 !important;
    text-align: center;
    border: none;
}

label {display: flex; font-style: italic; color: #fff; font-size: 14px}
label a{color: #fff; text-decoration: underline;}
#footer a{color: #EB6466}
#footer{padding: 10px; background: #fff;
    position: relative;
    bottom: 0;
    width: -webkit-fill-available;
}
#form button{background: #EB6466; border-radius: 30px; font-size: 18px; color: #fff; padding: 20px 50px; border: none; cursor: pointer;}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-checkbox {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: relative;
    top: 3px;
    height: 20px;
    width: 20px;
    border-radius: 4px;
    border: 1px solid #fff;
    display: inline-block;
    margin-right: 10px;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: transparent;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark::after {
    display: block;
}

.custom-checkbox .checkmark::after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.message{border-radius: 25px; background-color: #fadbd5; max-width: 500px; padding-bottom: 10px; margin: 0 auto}
h2{background: #fff; border-radius: 25px 25px 0 0; padding: 10px; font-weight: bold !important; margin-bottom: 0 !important}
.form h2{padding: 20px 0}