.resetpassword-page {
  display: flex;
  flex-direction: column;
}

.reset-card {
  width: 85%;
  max-width: 450px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reset-form {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.reset-form .inputs-container .inputs-group .reset-inputs {
  position: relative;
  margin-bottom: 20px;
}
.reset-form .inputs-container .inputs-group .reset-inputs .input-container {
  position: relative;
}
.reset-form .inputs-container .inputs-group .reset-inputs .input-container .toggle-password {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  color: #666;
  transition: color 0.3s ease;
}
.reset-form .inputs-container .inputs-group .reset-inputs .input-container .toggle-password:hover {
  color: #333;
}
.reset-form .inputs-container .inputs-group .reset-inputs h5 {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #202124;
}
.reset-form .inputs-container .inputs-group .reset-inputs input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.reset-form .inputs-container .inputs-group .reset-inputs input:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
  outline: none;
}
.reset-form .reset-error {
  margin-bottom: 15px;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: #d93025;
  background-color: #ffe6e6;
  border: 1px solid #d93025;
  border-radius: 4px;
}
.reset-form .reset-error small {
  display: block;
  font-size: 14px;
}
.reset-form .resetBtn {
  display: flex;
  justify-content: center;
}
.reset-form .resetBtn .reset-button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #0B1734;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.reset-form .resetBtn .reset-button:hover {
  background-color: #0a31bb;
  transform: scale(1.05);
}
.reset-form .resetBtn .reset-button:active {
  transform: scale(0.98);
}

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
#loading-overlay.show {
  visibility: visible;
  opacity: 1;
}
#loading-overlay .loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3a3a3a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 576px) {
  .reset-card {
    padding: 30px;
  }
  .reset-form .inputs-container .inputs-group .reset-inputs input {
    font-size: 14px;
    padding: 8px;
  }
  .reset-form .resetBtn .reset-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}/*# sourceMappingURL=style.css.map */