.auth-form input:focus,
.auth-form textarea:focus,
.auth-form select:focus,
.auth-form button:focus {
  outline: none;
  border-color: rgba(254, 185, 0, 0.8);
  box-shadow: 0 0 5px rgba(254, 185, 0, 0.6);
  transition:
    box-shadow 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

.verification-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}

.verification-input {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    letter-spacing: 10px;
    font-family: monospace;
    width: 140px;
    height: 50px;
    border: 2px dashed #FEB900;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #FFF8DC;
    outline: none;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
    align-self: center;
}

.verification-input:focus {
    border-color: #ffcc00;
    background-color: #fffae6;
    box-shadow: 0 0 8px rgba(255, 185, 0, 0.6);
}

.verification-label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.hidden {
  display: none !important;
}

.auth-message {
  font-size: 14px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-weight: 500;
}

.auth-message ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.auth-message li {
  margin: 0;
  padding: 8px;
}

.auth-message strong {
  font-weight: 600;
}

.alert-error {
  background-color: #fbe4e4;
  color: #b71c1c;
  border-left: 5px solid #b71c1c;
}

.alert-success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-left: 5px solid #2e7d32;
}

.alert-warning {
  background-color: #fff8e1;
  color: #ff8f00;
  border-left: 5px solid #ff8f00;
}

.alert-info {
  background-color: #e3f2fd;
  color: #1565c0;
  border-left: 5px solid #1565c0;
}

.auth-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.auth-form .form-group {
  padding-bottom: 20px;
}

.auth-form input,
.auth-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.auth-form input:focus,
.auth-form textarea:focus {
  border-color: var(--color-primary);
}

.auth-form input {
  height: 44px;
}

.auth-form textarea {
  padding: 10px 12px;
}

.auth-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.auth-form button[type="submit"]:hover {
  background: rgba(254, 185, 0, 0.8);
}

.btn-outline-primary {
  --bs-btn-active-bg: var(--color-primary);
  --bs-btn-active-border-color: var(--color-primary);
  /*

    */
}

.btn-check + .btn {
  --bs-btn-color: var(--color-primary);
  --bs-btn-border-color: var(--color-primary);
}

.btn-check + .btn:hover {
  --bs-btn-color: rgba(254, 185, 0, 0.8);
  --bs-btn-border-color: rgba(254, 185, 0, 0.8);
}
