/* 
#ebeced
#7c7c72 
*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "SUSE", system-ui;
}
body{
    background-color: #ebeced;
}
/* Header */
header {
    height: 215px;
    background-color: #7c7c72;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

header div {
    width: 96.5%;
    height: 75%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: solid 1px #fff;
}

header div h1 {
    font-weight: 300;
    font-size: 45px;
    letter-spacing: 7px;
}
header div p {
    font-weight: 200;
    font-size: 25px;
    letter-spacing: 9px;
}
.display2{
    display: none;
}

/* Corpo do email */
article{
    display: flex;
    justify-content:space-between;
    align-items: center;
    flex-direction: column;
    width: 1225px;
    margin: 70px auto 0px auto;
}
.texto{
    font-size: 35px;
    text-align: center;
    color: #7c7c72;
    font-weight: 600;
}
.form{
    width: 80%;
    margin-top: 50px;
    margin-left: -100px;
}
.form-cadastro{
    width: 95%;
    margin: 0 auto;
}
.form-group, .form-group-button{
    display: flex;
    align-items: center;
    font-style: italic;
}
.form-group{
    margin: 0px 0px 35px 0px;
}
.form-group-button{
margin: 0 auto;
margin-left: 100px;
}
label {
    color: #7c7c72;
    font-weight: 200;
    font-size: 25px;
    margin-right: 5px; 
    text-align: right;
    width: 40%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
    width: 450px; 
    padding: 10px;
    border: 2px solid #7c7c72;
    font-size: 14px;
    color: #333;
    background-color: #ebeced;
}

input[type="checkbox"] {
    margin-right: 20px;
    width: 45px;
    height: 45px;
    text-align: left;
    outline: none;
    cursor: pointer;
    appearance: none;
    position: relative; /* Necessário para o pseudo-elemento ser posicionado corretamente */
}
input[type="checkbox"]:not(:checked) {
    background-color: #fff;
    border: solid 1px;
    border-radius: 3px;
    width: 45px;
    height: 45px;
}
input[type="checkbox"]:checked {
    background-color: #7c7c72;
    border: solid 1px;
    border-radius: 3px;
    width: 45px;
    height: 45px;
}

input[type="checkbox"]:checked::after {
    content: '✓'; /* Sinal de certo */
    font-size: 25px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza o sinal */
}

.checkbox-group {
    align-items: center;
    display: flex;
    width: 110%;
    margin-left: 40px;
}
.label-texto{
    width: 80%;
    text-align: left;
    font-weight: 600;
}
button[type="submit"] {
    background-color: #7c7c72;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    margin: 40px auto 0 auto;
    width: 600px;
    height: 70px;
}

button[type="submit"]:hover {
    background-color: #6b6b64;
}

/* Quebra 1225px */
@media screen and (max-width:1225px){
    article{
        width: 1000px;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select {
    width: 350px; 
    }
}

/* Quebra 1100px */
@media screen and (max-width:1000px){
    article{
        width: 750px;
    }
    .texto{
        font-size: 28px;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select {
        width: 300px;
        font-size: 15px;
        height: 42px;
    }
    label {
        font-size: 20px;

    }
    input[type="checkbox"] {
        width: 25px;
        height: 25px;
    }
    input[type="checkbox"]:not(:checked), input[type="checkbox"]:checked {
        width: 25px;
        height: 25px;
    }
    button[type="submit"] {
        font-size: 24px;
        width: 400px;
        height: 70px;
    }
    .label-texto{
        width: 600px;
    }
    
}

/* Quebra 750px */
@media screen and (max-width:750px){
    article{
        width: 550px;
        margin-top: 50px;
    }
    .texto{
        font-size: 24px;
    }
    button[type="submit"] {
        font-size: 18px;
        width: 300px;
        height: 60px;
    }
    .form-cadastro{
        width: 100%;
    }
    .form-group {
        flex-direction: column;
        margin-bottom:20px ;
    }
    label {
        width: 100%; 
        text-align: center;
        font-size: 18px;
    }
    .label-texto{
        width: 800px;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select {
        height: 45px;
    }
    .display2{
        display: block;
    }
    .display1{
        display: none;
    }
    .form{
        margin-top: 30px;
        margin: 50px auto 0 auto;
    }
    .checkbox-group {
        align-items: center;
        margin-left: -20px;
        width: 550px;
    }
    .label-texto{
        width: 550px;
    }
    img{
        width: 550px;
    }
    .form-group-button{
        margin: 0 auto;
    }
}

@media screen and (max-width:620px){
    .checkbox-group {
        align-items: center;
        margin-left: 0px;
        width: 450px;
    }
    .label-texto{
        width: 450px;
    }
}

/* Quebra 550px */
@media screen and (max-width:550px){
    header {
        height: 180px;
    }
    header div h1 {
        font-size: 32px;
    }
    header div p {
        font-size: 20px;
    }
    article{
        width: 370px;
        margin-top: 35px;
    }
    .texto{
        font-size: 18px;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select {
        font-size: 16px;
    }
    label {
        font-size: 16px;
        width: 350px;
    }
    .checkbox-group {
        align-items: center;
        margin-left: -40px;
        width: 400px;
    }
    img{
        width: 440px;
    }
    input[type="checkbox"]:not(:checked), input[type="checkbox"]:checked {
        width: 24.5px;
        height: 20px;
    }
}

@media screen and (max-width:440px){
    article{
        width: 350px;
    }
    .checkbox-group {
        margin-left: -30px;
        width: 350px;
    }
    button[type="submit"] {
        font-size: 18px;
        width: 270px;
        height: 55px;
    }
    img{
        width: 350px;
    }
    input[type="checkbox"]:not(:checked), input[type="checkbox"]:checked {
        width: 24px;
        height: 17.5px;
    }
}