@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body{
    background-image: linear-gradient(rgba(29, 29, 29, 0.4), rgba(29, 29, 29, 0.4)), url(../img/fundo_login.jpg);
    background-repeat: no-repeat;
    font-family: 'Poppins', sans-serif;
    background-position: 50%;
    margin: 0;
    background-size: cover;
    min-height: 100vh;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    
}

.div_login{
    display: flex;
    flex-direction: column;
    margin: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 10px;
}

.texto_titulo{
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    align-self: center;
}

.texto_subtitulo{
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    align-self: center;
    text-align: center;
}

.texto_inputs{
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.inputs{
    border: 1px solid grey;
    border-radius: 4px;
    padding: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    outline: none;
}

.inputs::placeholder{
    font-family: 'Poppins', sans-serif;
}

.btn_entrar{
    border: 1px solid grey;
    background-color: #0d9488;
    color: white;
    border-radius: 4px;
    padding: 0.5rem;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    outline: none;
    cursor: pointer;
}

.texto_nav{
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    align-self: center;
    text-align: center;
}

.texto_cadastro{
    color: #0d9488;
}

.container_inputs{
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.div_olho_senha{
    position: relative;
}

.fa-eye{
    position: absolute;
    top: 50%;
    right: 8px;
    color: black;
    transform: translateY(-50%);
    cursor: pointer;
}

.fa-eye-slash{
    position: absolute;
    top: 50%;
    right: 8px;
    color: black;
    transform: translateY(-50%);
    cursor: pointer;
}

a{
    text-decoration: none;

}