.container{
 display: flex;
 flex: 1;
 display: flex;
 justify-content: center;
 align-items: center;
}

.divContent{
    display: flex; 
    width: 500px;
    height: 300px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color:#0d42682a;
    @media(max-width:768px){
      width: 90%;
    }
}

.divInput{
    display: flex;
    width: 80%;
    flex-direction: column;   
    justify-content: center;
    align-items: center;
    label{
        align-self: flex-start;
        margin-bottom: 5px;
        font-weight: bold;
    }
    
    input{
      width: 100%;
      height: 40px;
      border: 0;
      margin-bottom: 10px;
      border-radius: 5px;
      padding-left:5px ;
      padding-right: 38px;
      
      &::placeholder{
        color: #aaa; 
        opacity: 1; 
        font-size: 14px;
        
      }
     
    }
    button{
      width: 100px;
      height: 30px;
      align-self: flex-end;
      border-radius: 5px;
      border: 0;
      background-color: #0d42689a;
      color: var(--white);
      font-weight: bold;
      margin-top: 10px;
       &:hover{
        background-color: #1270ce5b;
       }
    }
}
/* Container para o campo de senha com o ícone */
.passwordInputContainer {
    position: relative;
    width: 100%;
  }
  
  /* Ícone do olho para ver a senha */
  .eyeIcon {
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
  
    &:hover {
      color: #000;
    }
  }