.login-app {
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    height: 100vh;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    background-color: #f8f9fd;
  }
  
  .login-text {
    height: 25px;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  
  .login-submit {
    margin-top: 10px;
    cursor: pointer;
    font-size: 15px;
    background: #0d6efd;
    border: 1px solid #0d6efd;
    color: #fff;
    padding: 10px 20px;
  }
  
  .login-submit:hover {
    background: #6aa6ff;
  }

  .login-button-container {
    display: flex;
    justify-content: center;
  }
  
  .login-login-form {
    background-color: white;
    padding: 2rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  .login-list-container {
    display: flex;
  }
  
  .login-error {
    color: red;
    font-size: 12px;
  }
  
  .login-title {
    font-size: 25px;
    margin-bottom: 20px;
  }
  
  .login-input-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px;
  }