


html,
body {
  min-height: 100%;
}

/* body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: auto;
} */

.login-page {
  background-image: url('../img/crestfood-admin-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 450px;
  margin: 0 auto;
  max-width: 400px;
  /* background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 10px 10px 4px 10px rgba(219, 13, 13, 0.1); */

}

@media (max-width: 768px) {
  .login-box {
    width: 85%;
    margin-top: 20px;
  }
}

.login-box-body {
  background: #fff;
  padding: 30px;
  border-top: 0;
  color: #666;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(17, 112, 171, 0.17);
  border: none;
}

.login-logo {
  font-size: 35px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 300;
}

.login-form-control .form-control {
  height: 40px;
  border-radius: 5px;
}

.center-btn {
  display: flex;
  justify-content: center;
  width: 100%;
}


.otp-input-group {
  display: flex;
  justify-content: space-between;
}

.otp-input-group input {
  width: 70px;
  height: 70px;
  text-align: center;
  font-size: 24px;
  border: 2px solid #ccc;
  border-radius: 5px;
}

.otp-input-group input:focus {
  border-color: #007bff;
  outline: none;
}

.form-text {
  font-size: 14px;
  color: #6c757d;
  margin-top: 5px;
}

.btn-primary {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  border-radius: 5px;
  background-color: #007bff;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal-backdrop {
  background-color: rgba(255, 255, 255, 0.8) !important; /* 0.5 makes it 50% opaque */
}
#locationButton {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: auto;
  margin-right: 10px;
}

#locationButton:hover {
  background-color: #45a049;
}

#locationButton i {
  margin-right: 10px;
}
.form-control {
  padding: 10px;
  margin-top: 10px;
}
.invalid-feedback {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.is-invalid {
  border-color: red;
}


.is-valid {
  border-color: green;
}

.form-group {
  margin-bottom: 15px;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Apply the blinking effect */
.blinking {
  animation: blink 1s step-start infinite;
}
#otp-error-message {
  color: red;
  font-size: 0.875rem;
  padding-top: 5px;
}



