body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

header {
  background-color: #0858cf !important;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bg-secondary {
  background: #ff69a5 !important;
}

.menu {
  margin-top: 0px;
  font-size: 10px;
  font-weight: bold;
}

.menu h2 {
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
  font-size: 24px !important;
  font-weight: bold;
  font-size: 24px;
}

.menu h2:hover {
  text-decoration: underline;
  color: #fff;
}

/* Add any additional custom styles here */

/* CSS for the key input */
.key-input {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  transition: border-color 0.3s ease-in-out;
}

.key-input:focus {
  border-color: #007bff;
  /* Change border color when the input is focused */
}

.invalid-feedback {
  color: #dc3545;
  /* Error message color */
  font-size: 14px;
  margin-top: 5px;
}

input[type="email"]:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

input[type="password"]:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

input[type="text"]:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}


.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* padding: 15px; */
  background: #0250c5;
  /* background: -webkit-linear-gradient(bottom, #0250c5, #d43f8d); */
  background: -o-linear-gradient(bottom, #0d6efd, #d43f8d);
  background: -moz-linear-gradient(bottom, #0d6efd, #d43f8d);
  /* background: linear-gradient(bottom, #0250c5, #d43f8d); */
  background: -webkit-linear-gradient(bottom, #d43f8d, #0d6efd);
  background: linear-gradient(to top, #d43f8d, #0d6efd);


  position: relative;
  z-index: 1;
}


/* Model  */
.key-input:focus {
  border-color: #007bff;
  /* Change border color when the input is focused */
}

.invalid-feedback {
  color: #dc3545;
  /* Error message color */
  font-size: 14px;
  margin-top: 5px;
}

.modal {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 77, 77, .7);
  transition: all .4s;
}

.modal:target {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  border-radius: 4px;
  position: relative;
  width: 500px;
  max-width: 90%;
  background: #fff;
  padding: 1em 2em;
}

.modal__footer {
  text-align: right;

  a {
    color: #585858;
  }

  i {
    color: #d02d2c;
  }
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #585858;
  text-decoration: none;
}



/* OTP input styles */
.otp-container, .email-otp-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.otp-input, .email-otp-input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 18px;
  margin: 0 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}

.otp-input:focus, .email-otp-input:focus {
  border-color: #007bff;
}