*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}
.main-wrapper{
    width: 350px;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.main-wrapper img{
    width: 100%;
    margin-bottom: 30px;
}


.main-wrapper h1{
    text-align: center;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-size: 20px;
}

form{
    display: flex;
    flex-direction: column;
}

form input{
    height: 45px;
    border-radius: 8px;
    border: 1px solid #CECECE;
    outline: none;
    padding: 8px;
    transition: all 0.3s;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;

}

form input:focus, form input:valid{
    border-color: #274295;
}

form input + input{
    margin-top: 20px;
}


#entrar{
    margin-top: 20px;
    height: 45px;
    border: none;
    outline: none;
    background-color: #274295;
    color: #FFF;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

#entrar:hover{
    background-color: #3853A6;
}

.error-message{
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 15px 15px;
    color: #660016;
    margin-bottom: 20px;
    text-align: center;
}


h4{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}


.open-submit-changes-form, .submit-changes-form{
    height: 45px;
    border: none;
    outline: none;
    background-color: #274295;
    color: #FFF;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.exit-button{
    text-align: center;
    margin-top: 20px;
    color: #415eb6;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
}

.exit-button:hover{
    text-decoration: underline;
}

.open-submit-changes-form:hover, .submit-changes-form:hover{
    background-color: #3853A6;
    
}

@keyframes blurAndFade {
    0%{
        backdrop-filter: blur(0px);
        opacity: 0;
    }
    100%{
        backdrop-filter: blur(5px);
        opacity: 1;
    }
}

@keyframes closeModal {
    0%{
        backdrop-filter: blur(5px);
        opacity: 1; 
    }
    100%{
        backdrop-filter: blur(0px);
        opacity: 0; 
    }
}

.changes-form-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    display: none;
    transition: all;
}



.changes-form-modal{
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

.changes-form span{
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.changes-form textarea{
    width: 300px;
    height: 150px;
    resize: none;
    margin-bottom: 10px;
    padding: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    border: 1px solid #CECECE;
    outline: none;
    border-radius: 8px;
}

.changes-form textarea:focus{
    border-color: #274295;
}

.close-button{
    position: absolute;
    background-color: #EE0016;
    width: 30px;
    height: 30px;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff  ;
    right: -10px;
    top: -10px;
    box-shadow: 2px 4px 10px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.close-button img{
    width: 20px;
    height: 20px;
}

.email-enviado{
    width: 300px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #6ca96e;
    margin-bottom: 10px;
    font-weight: 600;

}

.email-enviado{
    width: 300px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #EE0016;
    margin-bottom: 10px;
    font-weight: 600;

}


.aguarde{
    text-align:center; 
    margin:0 auto; 
    font-family:"Roboto",sans-serif; 
    color: #CECECE;
}

.warning-message{
    display: flex;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-family:"Roboto",sans-serif; 
    font-weight: 500;
    color: #415eb6;
}

.warning-message img{
    width: 30px;
    margin-bottom: 0;
}

.warning-message a{
    color: #274295;
    font-weight: 800;
    margin-left: 4px;


}
