@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
   
}

body{
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    height: 100vh;
    display: flex;
    background-color: rgb(241, 241, 241);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.section-enviar-email{
   background-color: white;
    display: flex
;
    flex-direction: column;
    align-items: center;
    padding: 35px;
    gap: 20px;
    box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 775px;
}
.txt-enviar-email{
   width: 80%;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 14px;
}
#titulo-header{
    margin: 15px 0px;
    color: rgb(71, 71, 71);
    font-size: 20px;
}
.form-email{
    display: flex;
    width: 68%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.form-email>p{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    gap: 10px;
}
.form-email>p>label{
    font-size: 14px;
}
#id_email{
      box-sizing: border-box;
    width: 100%;
    padding: 13px;
    border-radius: 8px;
    border: thin solid rgb(209, 209, 209);
    height: 41px;
    max-height: 41px;
}
#botao-enviar-email{
    padding: 13px;
    width: 100%;
    color: white;
    font-weight: 800;
    font-size: 14px;
    background-color: #00945f;
    border-radius: 8px;
    border: none;
    transition: ease-in-out 0.3s;
     font-family: "Poppins", sans-serif;
    font-weight: 400;
}
#botao-enviar-email:hover{
    cursor: pointer;
    background-color: #006341
}

.container-login{
    margin-top: 28px;
    margin: 15px 0px;
    width: 97%;
    align-self: center;
    display: flex;
    justify-content: center;
}

.link-login{
    color: rgb(129, 129, 129);
    text-decoration: none;
    font-size: 14px;
}
.link-login:hover{
    color: #3e3e3e;
}

.txt-done{
    font-size: 14px;
    text-align: center;
}