



  .btn-need-help{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    border-radius: 1rem;

    background-color: #ffffff;
    border: 1px solid #cbd5e1;

    padding: 0.75rem 1.25rem;

    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;

    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
    text-decoration: none;
  }
  .btn-need-help:hover {
     background-color: #f8fafc;
     color: #0f172a;
  }
  .btn-need-help:focus {
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.35);
    color: #0f172a;
  }



  .auth-card{
    background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,255,.98)) !important;
    border:1px solid #d9e3f2 !important;
    border-radius:28px !important;
    box-shadow:0 16px 40px rgba(17, 38, 78, 0.08) !important;
    width: 100% !important;
    max-width: 600px !important;
  }

   .custom-btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 1rem;
      background-color: #1e3a8a;
      padding: 14px 20px;
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
      text-decoration: none;
      transition: background-color 0.3s ease;
      width: 150px;
    } 
    .custom-btn:hover {
      background-color: #172554;
    }
    .custom-btn:focus {
       outline: none;
      box-shadow: 0 0 0 4px rgba(148, 163, 184, .35);
    }
    .custom-outline-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #cbd5e1;
      border-radius: 16px;
      background-color: #ffffff;
      padding: 14px 20px;
      font-size: 14px;
      font-weight: 600;
      color: #334155;
      text-decoration: none;
      transition: all 0.3s ease;
       width: 150px;
    }

    .custom-outline-btn:hover {
        background-color: #f8fafc;
    }

  /* focus-ring */
  .custom-outline-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, .35);

  }

.input-field {
  width: 100%; border-radius: 1rem; border: 1px solid rgb(203 213 225); background: white;
  padding: .9rem 1rem; font-size: .95rem; color: rgb(15 23 42); font-weight: 600;
}
.input-field:focus { outline: none; border-color: rgb(30 64 175); box-shadow: 0 0 0 4px rgba(59,130,246,.12); }

.modal-body .row{
    display:flex;
    justify-content:center;
    align-items:center;
}

.modal-body .form-group.row{
    display:flex;
    justify-content:center;
    align-items:center;
    /* gap:12px; */
    width:100%;
    margin:0 auto;
}

.otp-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.otp-input{
    width:48px;
    height:48px;
    border:1px solid #cbd5e1;
    border-radius:12px;
    text-align:center;
    font-size:20px;
    font-weight:600;
    outline:none;
    transition:0.3s;
}

.otp-input:focus{
    border-color:#1e3a8a;
    box-shadow:0 0 0 3px rgba(30,58,138,0.12);
}

#lblResend{
    /* margin-left:10px; */
    white-space:nowrap;
}

.resendotp {
    text-align: center !important;
    margin: 10px auto 10px auto !important;
   

}