body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: linear-gradient(45deg, Blue, DodgerBlue, LightSteelBlue);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Ebrima, sans-serif;
  font-weight: normal;

  .upper {
    background: none;
  }

  .lower {
    background: none;
  }

  .login-box {
    text-align: left;
    width: 100%;
    max-width: 420px;
    background: LightSteelBlue;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .login-title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    color: #203a43;
  }

  .form-control {
    height: 50px;
    border-radius: 12px;
  }

  .input-group-text {
    border-radius: 12px 0 0 12px;
    background: SteelBlue;
    color: white;
    border: none;
    text-align: left;
  }

  .btn-login {
    background: SteelBlue;
    color: white;
    height: 50px;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
  }

  .btn-login:hover {
    background: CornflowerBlue;
    color: white;
  }

  .extra-links {
    text-align: center;
    margin-top: 20px;
  }

  .extra-links a {
    text-decoration: none;
    color: #203a43;
    font-weight: 500;
  }

  .extra-links a:hover {
    text-decoration: underline;
  }

  @media (max-width: 576px) {
    .login-box {
      margin: 20px;
      padding: 30px 20px;
    }
  }

  .outline-text {
    font-family: Ebrima;
    background-color: RoyalBlue;
    font-weight: bold;
    color: white;
    -webkit-text-stroke: 1px navy;
    padding: 2px 5px;
    border-radius: 10px;
  }

  /* Responsive container */
  .image-box {
    width: 100%;
    max-width: 400px;
    margin: auto;
    overflow: hidden;

    border-radius: 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Image style */
  .image-box img {
    width: 100%;
    opacity: 0.7;
    display: block;
    transition: transform 0.5s ease;
  }

  /* Hover zoom effect */
  .image-box:hover img {
    transform: scale(1.5);
    opacity: 1;
  }

  /* Responsive container */
  .logo-box {
    width: 100%;
    max-width: 160px;
    margin: auto;
    overflow: hidden;

    border-radius: 100px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
  }

  /* Image style */
  .logo-box img {
    width: 100%;
    opacity: 0.9;
    transition: transform 0.5s ease;
  }

  /* Hover zoom effect */
  .logo-box:hover img {
    transform: scale(1.025);
    opacity: 1;
  }
}
