body {
  font-family: sans-serif;
  background: url('../images/formBackground.png') center/cover no-repeat;
  background-color: #012d5a;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reset-container {
  background-color: #13294b;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0);
  color: rgb(255, 191, 0);
  width: 450px;
  backdrop-filter: blur(8px);
}

.form-control {
  background: #222;
  color: white;
  border: none;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #ffc107;
}

.otp-box {
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin: 5px;
  background: #fff;
  color: #000;
}

/* password alert */
.is-valid {
  border-color: #28a745;
  /* Green border for valid input */
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="green" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M20 6L9 17l-5-5" /%3E%3C/svg%3E');
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  /* Size of the tick */
  padding-right: 30px;
  /* To ensure space for the tick symbol */
}

.is-invalid {
  border-color: #dc3545;
  /* Red border for invalid input */
}

.text-danger {
  color: #dc3545;
  /* Red text for error messages */
}

.text-success {
  color: #28a745;
  /* Green text for success messages */
}

#passwordAlert {
  font-size: 0.9rem;
  /* Smaller font size for the alert text */
  margin-top: 5px;
}

/* Caps Lock Alert Styling */
.caps-lock-alert {
    display: none;  /* Initially hidden */
    color: #ff0000;  /* Red color for the alert */
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
}

.caps-lock-alert.visible {
    display: block;  /* Show alert when Caps Lock is on */
}


.btn-yellow {
  background-color: #ffc107;
  border: none;
  color: black;
  font-weight: bold;
}

.btn-yellow:hover {
  background-color: #e0a800;
  color: #000;
}

.footer-links {
  text-align: center;
  margin-top: 15px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}

.footer-links a:hover {
  color: #ffc107;
  text-decoration: underline;
}

.footer-links i {
  margin-right: 5px;
}