body {
    background-color: #2c4272;
    font-family: Verdana;
  }

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    margin-top: -10%;
  }

  .login-form {
    background-color: #ffffff;
    max-width: 360px;
    padding: 90px;
    border-radius: 9px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .login-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: rgb(23, 88, 187);
    font-family: Verdana;
  }

  .form-control {
    background-color: #f2f2f2;
    border: none;
    border-radius: 3px;
    padding: 15px 22px;
  }

  .form-control:focus {
    outline: none;
    box-shadow: none;
  }

  .btn-primary {
    background-color: #0a4188;
    color: #bcefff;
    border: none;
    border-radius: 3px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    margin: 20px auto 0;
    display: block;
    width: 100%;
  }

  .btn-primary:hover {
    background-color: rgb(26, 83, 189);
    color: #ffffff;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .forgot-password {
    text-align: center;
    margin-top: 10px;
  }

  .forgot-password a {
    color: #888888;
    text-decoration: none;
  }

  .forgot-password a:hover {
    text-decoration: underline;
  }

  .logo {
    text-align: center;
    margin-top: 20px;
  }

  .logo img {
    width: 300px;
    height: auto;
  }
