@charset "UTF-8";
.date-input-wrapper {
  position: relative; }
  .date-input-wrapper .calendar-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none; }
  .date-input-wrapper .flatpickr-input {
    padding-right: 30px; }

/* OTP and verification shared styles */
.verify-container {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem; }

.verify-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  background: #fff;
  transition: transform 0.2s; }
  .verify-card:hover {
    transform: translateY(-2px); }

/* Ensure login card matches OTP card styling */
.auth-form.card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.2s; }
  .auth-form.card:hover {
    transform: translateY(-2px); }

.otp-container {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem; }

.otp-input {
  width: 2.75rem;
  height: 2.75rem;
  text-align: center;
  border: 2px solid #00b7eb;
  /* Electric blue */
  border-radius: 0.5rem;
  font-size: 1.1rem;
  transition: border-color 0.3s, box-shadow 0.3s; }
  .otp-input:focus {
    border-color: #00e1ff;
    box-shadow: 0 0 10px rgba(0, 183, 235, 0.5);
    outline: none; }
  .otp-input.is-invalid {
    border-color: #dc3545; }

.btn-primary {
  background: linear-gradient(90deg, rgba(76,201,255,.2), rgba(0,229,255,.15));
  border: 2px solid #4cc9ff;
  color: #4cc9ff;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(76,201,255,.35);
  letter-spacing: 0.01em;
  border-radius: 0.5rem; }
  .btn-primary:hover {
    background: linear-gradient(90deg, rgba(76,201,255,.35), rgba(0,229,255,.25));
    border-color: #00e5ff;
    color: #00e5ff;
    box-shadow: 0 0 20px rgba(76,201,255,.55), 0 0 40px rgba(0,229,255,.25);
    transform: translateY(-2px); }
  .btn-primary:disabled {
    background: rgba(76,201,255,.08);
    border-color: rgba(76,201,255,.15);
    color: rgba(76,201,255,.4);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.6; }

.btn-resend {
  background: rgba(76,201,255,.08);
  border: 1px solid rgba(76,201,255,.2);
  color: #4cc9ff;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.65rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border-radius: 0.5rem; }
  .btn-resend:hover {
    background: rgba(76,201,255,.15);
    border-color: rgba(76,201,255,.4);
    color: #00e5ff;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(76,201,255,.2); }

.action-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem; }

.status-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500; }

.status-icon {
  font-size: 1.5rem;
  color: #28a745; }

.status-pending .status-icon {
  color: #dc3545; }

.status-pending {
  color: #dc3545; }

.alert-info {
  background: #e6f7ff;
  border-color: #00b7eb;
  color: #005566;
  border-radius: 0.5rem;
  font-size: 0.9rem; }

@media (max-width: 576px) {
  .verify-container {
    padding: 0.5rem; }
  .verify-card {
    margin-bottom: 1rem;
    padding: 1rem; }
  .otp-input {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.95rem; }
  .btn-primary, .btn-resend {
    font-size: 0.85rem;
    padding: 0.6rem; }
  .status-container {
    font-size: 1rem; }
  .status-icon {
    font-size: 1.2rem; }
  .action-container {
    gap: 0.5rem; }
  p, .alert {
    font-size: 0.85rem; }
  h3 {
    font-size: 1.25rem; } }

/* Login page shared styles */
.auth-form {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto; }

.password-requirements {
  background: rgba(19,26,42,.6);
  border: 1px solid rgba(76,201,255,.2);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem; }
  .password-requirements ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .password-requirements li {
    line-height: 1.6;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #8aa0c4 !important;
    font-size: 0.875rem;
    transition: color 0.3s ease; }
    .password-requirements li.met {
      color: #4ade80 !important; }
    .password-requirements li::before {
      content: '✖';
      margin-right: 0.5rem;
      font-size: 1rem;
      color: #fb923c !important; }
    .password-requirements li.met::before {
      content: '✔';
      color: #4ade80 !important; }

@media (max-width: 576px) {
  .auth-form {
    padding: 1rem; }
  .form-label, .form-control, .password-requirements {
    font-size: 0.9rem; }
  .btn {
    font-size: 0.9rem; } }
