/* Importa as fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body{
    margin: 0;
}

.background{
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/bg_wallpaper.png) no-repeat  fixed;
    background-size: cover;
    height: 100vh;
}

.box{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 16px;
    padding: 25px 40px 30px 40px;
}

.logo_provedor{
    border-radius: 100%;
    max-width: 100px;
}

.titulo{
    font-family: "Archivo", sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #364159;
    letter-spacing: -0.05em;
    margin: 25px 0px 0px 0px;
}

.texto_corrido{
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757982;
    letter-spacing: -0.03em;
}

.formulario{
    display: flex;
    flex-direction: column;
    width: 100%
}

.label_texto_corrido1{
    font-family: "Inter", sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #2b344a;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.label_texto_corrido2{
    font-family: "Inter", sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #2b344a;
    letter-spacing: -0.03em;
    margin: 15px 0px 10px 0px;
}

.input{
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #757982;
    letter-spacing: -0.5px;
    background-color: #F2F3F5;
    border-color: #DADDE0;
    border-width: 1px;
    border-style: solid;
    border-radius: 6px;
    padding: 15px 10px 15px 20px;
}

.recuperar_senha{
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.recuperar_senha a {
    color: #234EB3;
}

.link_recuperar_senha:hover {
     font-weight: 600;
}

.bt_login{
    font-family: "Archivo", Sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: white;
    background-color: #3370FF;
    transition: background-color 0.3s ease;
    border-radius: 6px;
    margin-top: 15px;
    padding: 16px 0px 16px 0px;
    border-style: none;
    cursor: pointer;
}

.bt_login:hover{
    background-color: #234EB3;
}

.bt_login i {
    padding-left: 5px;
    font-size: 15px;
    height: auto;
}

.rodape{
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #0b0c0d;
}

.texto_rodape{
    font-family: "Inter", sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    text-align: center;
    margin: 0;
}