@import url(https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Poppins:wght@100;300;400;500;600;700;800;900&family=Robert+Sans&family=Open+Sans&family=Montserrat:wght@100;300;400;500;600;700;800;900);
:root {
  --default-green:#97B500;
}

.reset-password-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  margin-top: 100px;
  animation: fadeInBackground 1s ease-in-out;
}
.reset-password-container .reset-password-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.8s ease-out;
}
@media only screen and (min-width: 992px) {
  .reset-password-container .reset-password-box {
    width: 50%;
  }
}
.reset-password-container .reset-password-box label {
  font-weight: bold;
}

.alert-success {
  margin-bottom: 20px;
  font-size: 1rem;
}

@keyframes fadeInBackground {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
