.input-box {
   display: block;
  border: solid 1px #655a6b;
  border-radius: 5px;
  background: #342e38;
  color: #FFF;
  font-weight: 700;
  padding: 5px 10px;
  width: 100%;
  height: 40px;
  font-size: 15px;
  margin-bottom: 10px;
  cursor: pointer;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.error-text {
    font-size: 0.85rem;
    color: #dc3545;
    display: block;
    margin-top: 4px;
    padding-left: 2px;
    text-align: left;
}

.alert {
    position: relative;
    padding: 14px 20px;
    border-radius: 6px;
    margin-top: 16px;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.alert-success {
    background-color: #e6ffed;
    color: #2e7d32;
    border-color: #a5d6a7;
    text-align: center;
}

.alert-danger {
    background-color: #ffe6e6;
    color: #c62828;
    border-color: #ef9a9a;
    text-align: center;
}

.alert-warning {
    background-color: #fff4e5;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 10px;
    text-align: center;
}

/* Basic spinner style */
.loader-spinner {
    border: 2px solid #f3f3f3; /* Light gray */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 0.6s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

/* Animation keyframes */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Disable anchor style */
.rqat-anchor.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.d-none {
    display: none !important;
}

.forgot-link {
    font-size: 14px;
    color: #3498db;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.text-green-600 {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") center/1em auto no-repeat;
    border: none;
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.75;
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    background-size: 1rem;
    cursor: pointer;
    text-align: center;
}

.back-link {
    font-size: 14px;
    color: #3498db;
    text-decoration: none;

}

.back-link:hover {

    text-decoration: underline;
}

.btn-close:hover {
    opacity: 1;
}

.rounded-circle {
    border-radius: 50% !important;
}

.border {
    border: 1px solid #dee2e6 !important; /* Light gray border */
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important; /* Small shadow */
}

.rqat-anchor {
  display: block;
  border: solid 1px #655a6b;
  border-radius: 5px;
  background: #342e38;
  color: #655a6b;
  font-weight: 700;
  padding: 5px 10px;
  width: 100%;
  height: 40px;
  font-size: 15px;
  margin-bottom: 10px;
  cursor: pointer;
}