.req{
  color: #ff3b30;
  font-weight: 900;
}

body {
    background: radial-gradient(circle at top left,
      rgba(255,107,53,0.22), transparent 55%),
      radial-gradient(circle at bottom right,
      rgba(14,58,93,0.22), transparent 55%),
      linear-gradient(135deg, #fff7f2, #f2fbff);
}

/* ✅ page bg */
.auth-page{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px;

  
}

/* ✅ card */
.auth-card{
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 34px 30px;
  border-radius: 26px;

  background: linear-gradient(135deg,
      rgba(255,255,255,0.80),
      rgba(255,255,255,0.35)
  );

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);

  overflow: hidden;
  transition: 0.35s ease;
}

.auth-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.18);
  border-color: rgba(255,107,53,0.45);
}

/* watermark */
.auth-watermark{
  position: absolute;
  right: -20px;
  bottom: -35px;
  font-size: 88px;
  font-weight: 900;
  color: rgba(255,255,255,0.40);
  letter-spacing: 4px;
  z-index: 0;
}

/* ✅ top section */
.auth-top{
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.auth-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 20px;
  display: grid;
  place-items: center;

  background: linear-gradient(135deg, #ff6b35, #ff944d);
  color: #fff;
  font-size: 22px;

  box-shadow: 0 16px 35px rgba(0,0,0,0.14);
}

.auth-title{
  font-weight: 900;
  margin: 0;
  font-size: 24px;
  color: #0B1320;
}

.auth-subtitle{
  font-size: 13px;
  font-weight: 700;
  color: rgba(11,19,32,0.60);
  margin-top: 6px;
}

/* ✅ form */
.auth-form{
  position: relative;
  z-index: 2;
}

.auth-label{
  font-weight: 900;
  font-size: 13px;
  color: rgba(11,19,32,0.85);
  margin-bottom: 8px;
}

/* ✅ input wrap */
.auth-input-wrap{
  position: relative;
}

.auth-input-icon{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(14,58,93,0.75);
  font-size: 14px;
}

/* ✅ inputs modern */
.auth-input{
  width: 80%;
  border-radius: 16px;
  padding: 13px 14px 13px 42px;
  font-weight: 800;
  font-size: 14px;

  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(0,0,0,0.12);

  transition: 0.25s ease;
}

.auth-input:focus{
  border-color: rgba(255,107,53,0.70);
  box-shadow: 0 0 0 0.25rem rgba(255,107,53,0.18);
}

/* ✅ captcha box */
.captcha-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  border-radius: 16px;
  padding: 12px 14px;

  background: rgba(14,58,93,0.08);
  border: 1px solid rgba(14,58,93,0.15);
}

.captcha-text{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #0E3A5D;
  text-transform: uppercase;
  user-select: none;
}

.captcha-refresh{
  border: none;
  border-radius: 12px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #ff6b35, #ff944d);
  color: #fff;
  font-weight: 900;
  transition: 0.25s ease;
}

.captcha-refresh:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
}

.captcha-error{
  font-size: 12px;
  font-weight: 800;
  color: #ff3b30;
  margin-top: 6px;
}

/* ✅ button */
.auth-btn{
  background: linear-gradient(135deg, #ff6b35, #ff944d);
  border: none;
  border-radius: 16px;
  padding: 13px 14px;
  font-weight: 900;
  color: #fff;
  transition: 0.3s ease;
}

.auth-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.14);
  color: #fff;
}

/* ✅ links */
.auth-links{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.auth-links a{
  font-size: 13px;
  font-weight: 900;
  color: #0E3A5D;
  text-decoration: none;
}

.auth-links a:hover{
  color: #ff6b35;
  text-decoration: underline;
}

/* ✅ bottom text */
.auth-bottom{
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: rgba(11,19,32,0.70);
}

.auth-bottom a{
  font-weight: 900;
  color: #ff6b35;
  text-decoration: none;
}

.auth-bottom a:hover{
  color: #0E3A5D;
  text-decoration: underline;
}


/* ✅ make inputs center and smaller */
.auth-form-sm{
  width: 100%;
  max-width: 360px;   /* ✅ reduce width */
  margin: 0 auto;     /* ✅ center */
}

/* ✅ reduce input height a bit */
.auth-form-sm .auth-input{
  padding: 12px 14px 12px 42px;
  border-radius: 14px;
  font-size: 14px;
}


.auth-form-sm .captcha-box{
  max-width: 318px;
  margin: 3px 0 10px 0;
  padding: 7px 13px;
}

.auth-btn-sm{
  width: 200px;       
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
}

/* ✅ make links align properly */
.auth-links{
  max-width: 360px;
  margin: 0 auto;
}

/* ✅ bottom text center */
.auth-bottom{
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
}

.text-center.m-5 {
  display: flex;
  justify-content: center;
  padding: 13px;
}



.auth-alert {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 14px;
    margin-bottom: 18px;

    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

/* Danger alert – soft & clean */
.auth-alert-danger {
    background: #fff4f4;
    color: #b42318;
    border: 1px solid #ffd6d6;
}

.auth-alert i {
    font-size: 16px;
}
