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

body{
    height: 100vh;
}

.login{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
}

.login_esquerdo{
    height: 100%;
    background-image: url("../IMG/fundo_azul.png");
    background-size: cover;
    display: grid;
    place-items: center;
    padding: 24px;
} 

.login_direito{
    position: relative;
    height: 100%;
    background-image: url("../IMG/foto_login_adm.svg");
    background-size: cover;
}

.conjunto_frases img{
    position: absolute;
    left: 10px;
    width: 60%;
    float: right;
    margin: 30px;
}

.card{
    position: relative;
    width: 80%;
    height: 430px;
    background: #fff;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 20px;
    box-shadow: 0px 0px 25px rgba(0,0,0,.5 );
}

.card h1{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.card h4{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: auto;

}

.espaco .botao_voltar img{
    display: flex;
    align-items: center;
    justify-content: center;
}

.espaco{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 80px;

}

.espaco .botao_voltar{
    width: 36px;
    height: 36px;
    border-radius: 100px;
    background-color: #FF9900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card_logo{
    width: 70%;
    height: 80px;
}

.formulario_card{
    position: relative;
    display: grid;
    gap: 12px;
    font-size: 20px;
}

.formulario_grupo{ display: grid; gap: 6px; }
.formulario_grupo label{ font-weight: 600;}

.formulario_acoes{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.botao_entrar{
    width: auto; 
    min-width: 0;         
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    padding: 10px 35px;
    line-height: 1;
    font-size: 14px;
    border-radius: 3px;
    font-weight: bold;
    background: #fff;
    color: #FF9900;
    border: 3px solid;
    border-color: #FF9900;
    box-sizing: border-box;
    cursor: pointer;
}

.botao_entrar:hover{
  background: #FF9900;
  color: #fff;
  border-color: #FF9900;
  transform: scale(1.04);
  box-shadow: 0 6px 30px rgba(255, 209, 43, 0.3);
}

.formulario_grupo input{
    width: 100%;
    padding: 12px;
    border: 2px solid #d0d5dd;
    border-radius: 8px;
    outline: none;
}

.formulario_grupo input:focus{
    border-color: #FF9900;
    box-shadow: 0px 0px 0px 3px rgba(255, 153, 0,.15 );
}
