/* body {
  position: relative;
  min-height: 100vh;
  background: url("/static/img/patternAndDesigns/rangoliDesign.png") center/cover no-repeat !important;
  background-color: transparent !important;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.947);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.signUp {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: transparent;
  position: relative;
  z-index: 1;
}

.signUpContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 3rem;
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(187, 178, 178, 0.08);
  position: relative;
  z-index: 2;
}


.signUpIntro {
  flex: 1;
  color: #ef2e95;
}

.signUpForm {
  flex: 1;
  background: rgba(239, 46, 149, 0.05);
  padding: 2rem;
  border-radius: 12px;
}

.signUpForm h5 {
  color: #ef2e95;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}


.btn-primary {
  background-color: #ef2e95 !important;
  border: none !important;
  border-radius: 30px;
  width: 150px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(239, 46, 149, 0.5);
}

@media (max-width: 1000px) {
  .signUpContainer {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .signUpIntro {
    order: 1;
  }

  .signUpForm {
    order: 2;
    width: 100%;
  }
}

@media (max-width: 424px) {
  .signUpContainer {
    padding: 0rem;
  }
}


.otpBox {
  width: 50px;
  height: 50px;
  font-size: 1.3rem;
  text-align: center;
  border-radius: 8px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.otpBox:focus {
  border-color: #ef2e95 !important;
  outline: none;
  box-shadow: 0 0 5px #ef2e95;
}



.signIn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: transparent;
  position: relative;
  z-index: 1;
}

.signInContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 3rem;
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(187, 178, 178, 0.08);
  position: relative;
  z-index: 2;
}

.signInIntro {
  flex: 1;
  color: #ef2e95;
}

.signInForm {
  flex: 1;
  background: rgba(239, 46, 149, 0.05);
  padding: 2rem;
  border-radius: 12px;
}

.signInForm h5 {
  color: #ef2e95;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-control {
  border: 2px solid #f9a4d19b !important;
  border-radius: 3px !important;
  color: #ef2e95 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.form-control:focus {
  border: 2px solid #cf227e9b !important;
  border-radius: 3px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.form-control::placeholder {
  color: #a99b9b;
}

.btn-primary {
  background-color: #ef2e95 !important;
  border: none !important;
  border-radius: 30px;
  width: 150px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(239, 46, 149, 0.5);
}

@media (max-width: 1000px) {
  .signInContainer {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .signInIntro {
    order: 1;
  }

  .signInForm {
    order: 2;
    width: 100%;
  }
}

@media (max-width: 424px) {
  .signInContainer {
    padding: 0rem;
  }
}
input::-ms-reveal,
input::-ms-clear {
  display: none;
}

#togglePassword {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #EF2E95;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

#togglePassword:hover {
  color: #c02075;
  transform: translateY(-50%) scale(1.1);
}

@keyframes shake {
  0% { transform: translateY(-50%) rotate(0deg); }
  25% { transform: translateY(-50%) rotate(10deg); }
  50% { transform: translateY(-50%) rotate(-10deg); }
  75% { transform: translateY(-50%) rotate(6deg); }
  100% { transform: translateY(-50%) rotate(0deg); }
}

.shake {
  animation: shake 0.5s;
} */


/* ================= LOGIN PAGE BASE ================= */
.loginPage {
  min-height: 100vh;
  background: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: clamp(1.5rem, 4vw, 3rem);
}

/* Login Card */
.footerLoginWrap {
  background: #0d0d0d;
  color: #fff;

  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);

  width: 100%;
  max-width: 420px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

/* Logo */
.footerLogo img {
  max-width: 200px;
}

/* Form */
.footerLoginForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Inputs */
.footerInput {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;

  padding: 14px 16px;
  border-radius: 12px;

  font-size: clamp(0.95rem, 0.4vw + 0.9rem, 1rem);

  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footerInput::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footerInput:focus {
  outline: none;
  border-color: #FF6A00;
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.25);
}

/* Button */
.footerLoginBtn {
  background: #FF6A00;
  color: #000;
  border: none;

  padding: 14px;
  border-radius: 12px;

  font-weight: 600;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.05rem);

  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footerLoginBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 106, 0, 0.45);
}

/* Extra links */
.loginExtras {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.loginExtras a {
  color: #FF6A00;
  text-decoration: none;
}

.loginExtras a:hover {
  text-decoration: underline;
}

/* Password wrapper for relative positioning */
.passwordWrapper {
  position: relative;
}

.passwordWrapper input {
  width: 100%;
  padding-right: 35px;
  /* space for eye icon */
}

/* Eye icon style */
.togglePassword {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  user-select: none;
}