body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
  background-color: #3d3769 !important; 
  background-image: linear-gradient(#5960a5, #9a70ce, #c2a2e8, #f4ccee, #f3dcdb) !important; /* Gradient background */
  background-repeat: no-repeat !important; 
  background-size: cover !important; 
  background-attachment: fixed !important; 
}

.error-border {
  border: 2px solid #dc3545; 
}

.error-message {
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px; /* Minimal spacing */
  margin-bottom: 10px; /* Adjust the bottom margin as needed */
}

.error-message img {
  height: 0.82em;
  margin-right: 0.5em;
}


.content-container {
  position: relative;
  height: 100vh; 
  display: flex;
  justify-content: center; 
  align-items: center; 
  margin-left: 15vw;
  width: 80vw; 
}

.title-heading {
  font-family: 'Bowlby One SC', sans-serif;
  color: #b973c1;
  font-size: 2.5em;
  text-align: center;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
}

.blue-button {
  background-color: #c2a2e8 !important;
  width: 100%; 
  padding: 10px; 
}

.blue-button:hover {
  background-color: #b973c1 !important;
  color: #FFFFFF;
}

.btn.blue-button {
  z-index: 3; 
}

.register-link, .forgetpw-link {
  text-decoration: none;
}

.links {
  padding: 1em;
}

#login {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-group {
  width: 100%; 
  margin-bottom: 1rem; 
}

.login-button-container {
  text-align: center;
  width: 325px;s
}

#login .login-link {
  font-family: 'Bowlby One SC', sans-serif;
}

#login .blue-button {
  padding: 1rem 0 !important; 
}

.forget-password {
  padding-top: 10px; 
}

#forgetpw-link {
  color: #000000; 
}

#register-link {
  color: #000000; 
}

#forgetpw-link .highlight {
  color: #000000; 
}

.login-container {
  background-color: rgba(255, 255, 255, 0.9);
  width: 500px;
  max-width: 700px;
  padding: 50px 50px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%; 
  padding: 10px; 
}

.form-group {
  width: 80%;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .download-heading {
      font-size: 2em; 
  }

  .download-image {
      display: none;
  }

  .content-container {
      margin-right: 0; 
  }
}

 /* Media Queries */
 @media (max-width: 513px) {

  .login-container {
    width: 100%;
    padding: 40px 40px;

  }
  .login-form input[type="text"], .login-form input[type="password"] {
      font-size: 14px; 
  }

  .title-heading {
      font-size: 1.5em; 
  }

  .blue-button {
    width: 80%;
    padding: 10px; 
  }

  .links {
      flex-direction: column; 
      gap: 10px; 
  }


  
}

