  
.form-signin {
    max-width: 420px;
    width: 100%;
    padding: 2rem;
    background-color: #bdbbb7;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
} 

.toggle-password {
    position: absolute;
    top: 50%;
    right: 30px; /* Posição do ícone dentro do campo */
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d; /* Cor cinzenta do Bootstrap */
}

.toggle-passwordRe {
    position: absolute;
    top: 50%;
    right: 30px; /* Posição do ícone dentro do campo */
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d; /* Cor cinzenta do Bootstrap */
}

  .form-signin .form-floating:focus-within {
    z-index: 2;
  }
  
  .form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  .form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .password-wrapper {
    position: relative;
  }

@media (max-width: 576px) {
    .form-signin {
        padding: 1rem;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
    }
}