.login{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
}

.auth-card{
  width:100%;
  max-width:450px;
  padding:60px;
  border-radius:25px;
  background:black;
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,0,150,0.25);
  box-shadow:0 0 60px rgba(255,0,150,0.25);
  color:white;
}

.auth-card h2{
  text-align:center;
  margin-bottom:35px;
  font-weight:600;
}

.input-group{
  margin-bottom:22px;
}

.input-group label{
  font-size:13px;
  opacity:.8;
}

.input-group input{
  width:100%;
  padding:13px;
  margin-top:6px;
  border:none;
  border-radius:12px;
  background:rgba(255,255,255,0.08);
  color:white;
  outline:none;
  transition:0.3s;
}

.input-group input:focus{
  border:1px solid #ff008c;
  box-shadow:0 0 12px #ff008c;
}

.btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:linear-gradient(90deg,#ff008c,#8e2de2);
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.btn:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px #ff008c;
}

.footer{
  margin-top:25px;
  text-align:center;
  font-size:14px;
}

.footer a{
  color:#ff4dd2;
  text-decoration:none;
}

/* Password field with eye icon */
.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 45px; /* space for eye icon */
}

.password-wrapper i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #ccc;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.password-wrapper i:hover {
  color: #ff4dd2;
}

.otp-box {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.message-box {
    margin-bottom: 15px;
    text-align: center;
}

/* =========================
   OTP FULL PAGE FIXED LAYOUT
========================= */
.otp-page {
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
}

.otp-card {
    width: 100%;
    max-width: 520px;
    background: #000;
    border-radius: 28px;
    padding: 45px 35px;
    box-shadow:
        0 0 30px rgba(255, 0, 128, 0.14),
        0 0 60px rgba(140, 0, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.05);
    box-sizing: border-box;
}

.otp-card h2 {
    text-align: center;
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.otp-welcome {
    text-align: center;
    margin-bottom: 25px;
}

.otp-welcome p {
    color: #cfcfcf;
    margin: 6px 0;
    font-size: 16px;
    line-height: 1.6;
}

.otp-welcome strong {
    color: #fff;
}

.otp-card .input-group {
    margin-bottom: 24px;
}

.otp-card .input-group label {
    display: block;
    color: #ddd;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 500;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 16px;
    padding: 16px 45px 16px 18px;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.select-wrapper::after {
    content: "⌄";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 18px;
    pointer-events: none;
}

.select-wrapper select option {
    background: #111;
    color: #fff;
}

.otp-card .btn {
    width: 100%;
    border: none;
    outline: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #ff0080, #8a2be2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 0, 128, 0.18);
}

.otp-card .btn:hover {
    transform: translateY(-2px);
}

.otp-card .footer {
    margin-top: 22px;
    text-align: center;
    color: #ddd;
    font-size: 14px;
}

.otp-card .footer a {
    color: #ff4fd8;
    text-decoration: none;
    font-weight: 600;
}

.otp-card .footer a:hover {
    text-decoration: underline;
}

/* =========================
   LOGIN DROPDOWN (MATCH OTP)
========================= */

.auth-card .select-wrapper {
    position: relative;
    width: 100%;
}

.auth-card .select-wrapper select {
    width: 100%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: none;
    outline: none;
    border-radius: 12px;
    padding: 13px 45px 13px 13px;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 6px;
}

.auth-card .select-wrapper select:focus {
    border: 1px solid #ff008c;
    box-shadow: 0 0 12px #ff008c;
}

.auth-card .select-wrapper::after {
    content: "⌄";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 16px;
    pointer-events: none;
}

/* Dropdown options */
.auth-card .select-wrapper select option {
    background: #111;
    color: #fff;
}
/* MOBILE */

@media (max-width:900px){
  .auth-card{
    padding:40px 30px;
  }

  .otp-card {
      max-width: 100%;
      padding: 35px 22px;
      border-radius: 24px;
  }

  .otp-card h2 {
      font-size: 2rem;
  }
}