/* Custom styles */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 800px;
  background: #ffffff;
  /* Set background color to white */
  color: #000000;
  /* Set text color to black */
}

.welcome-text {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  /* Set text to uppercase */
  color: #5a0e0f;
  /* Set welcome text color */
  margin-bottom: 20px;
}

.login-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
  width: 400px;
  height: 489px;
  animation: fadeInAnimation 1s ease-in-out;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.logo {
  padding-bottom: 20px;
  padding-top: 50px;
}

@media (max-width: 767px) {
  .logo {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .login-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    width: 350px;
    height: 465px;
    animation: fadeInAnimation 1s ease-in-out;
  }
}

.login-form img {
  height: 80px;
  margin-bottom: 20px;
  animation: fadeInAnimation 1s ease-in-out;
}

.login-form h4 {
  color: #000000;
  /* Set heading color to black */
  margin-bottom: 20px;
  animation: fadeInAnimation 1s ease-in-out;
}

.login-form p {
  color: #333333;
  /* Set paragraph text color to a dark gray */
  margin-bottom: 30px;
  animation: fadeInAnimation 1s ease-in-out;
}

.form-group {
  margin-bottom: 20px;
  animation: fadeInAnimation 1s ease-in-out;
}

.form-control {
  border-radius: 10px;
}

.btn-primary {
  background-color: #000000;
  /* Set button background color to black */
  border-color: #000000;
  /* Set button border color to black */
  border-radius: 20px;
  animation: fadeInAnimation 1s ease-in-out;
}

.btn-primary:hover {
  background-color: #333333;
  /* Set button hover background color to a darker gray */
  border-color: #333333;
  /* Set button hover border color to a darker gray */
}

.footer {
  margin-top: 110px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  color: #ffffff;
  /* Set footer text color to white */
}

#preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  /* Ensure the preloader appears on top */
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  z-index: 9999;
  /* Ensure the overlay appears on top */
  display: none;
  /* Initially hidden */
}
