body {
    font-family: sans-serif;
    background-color: #f3f8fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .login-container {
    position: relative;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }

  .login-box {
    text-align: center;
  }

  .logo {
    margin-bottom: 20px;
  }

  .logo img {
    width: 150px;
    height: auto;
    /* Choose a contrasting logo color based on your brand */
  }

  h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
  }

  .input-field {
    margin-bottom: 15px;
  }

  .input-field label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
  }

  .input-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
  }

  .button-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
  }

  .primary-button {
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
  }

  .primary-button:hover {
    background-color: #d30000;
  }

  .link {
    color: #ff0000;
    text-decoration: none;
    font-size: 14px;
  }

  .show-password-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .show-password-icon i {
    font-size: 16px;
    color: #ff0000;
  }

  .show-password-icon:hover i {
    color: #d30000;
  }

  /* Optional secondary accent options (choose one or customize) */


  .input-field:hover input {
    border-color: #007bff; /* Cool blue accent */
  }

  .link:hover {
    text-decoration: underline;
  }


  /* Black alternative for text and icons */

  /*
  h2,
  .input-field label,
  .link {
    color: #000;
  }
  */

