body{
    background-color: #1D2236;
}


.bloco{
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.right-area{
    display: flex;
    width: 30%;
    gap: 2em;
    padding: 5%;
    height: 70vh;
    border-radius: 0.5em 0em 0em 0.5em;
    background-color: white;
    flex-direction: column;
    justify-content: center;
}

.left-area{
    display: flex;
    width: 30%;
    
    height: 70vh;

    background-color: rgb(238, 238, 238);
    border-radius: 0em 0.5em 0.5em 0em;
}

.left-area img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0em 0.5em 0.5em 0em;
}


.form-login{
    display: flex;
    gap: 1em;
    flex-direction: column;
}


.welcome{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.texts{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.texts span{
    font-size: 0.8em;
    color: #9e9e9e;
}


.codigo-container {
    display: flex;
    justify-content: space-between;    
  }
  
  .codigo-input {
    width: 60px;
    padding: 1em;
    text-align: center;
    font-size: 16px;
    margin: 0 2px;
    border: 1px solid #dedede;
    border-radius: 8px;
    transition: 0.2s;
  }

  .codigo-input:input{
    border: 1px solid #d8aa00 !important;
    transition: 0.2s;
  }
  

.info-span{
    font-size: 0.8em;
    color: #686868;
}

.error-msg{
    background-color: #bd0f1c;
    padding: 2%;
    border-radius: 5px;
    font-size: 0.9em;
    width: 100%;
    margin: 0;
    color: white;
    text-align: center;
}

.voltar-login{    
    color: #1d2236;
    display: flex;
    align-items: center;
    gap: 0.5em;
    text-decoration: none !important;
}

.voltar-login i{
    rotate: 180deg;
}

.voltar-login span{
    font-size: 0.9em;
}