/* =================================
           AUTH PAGE START
        ================================= */

body {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 0, 140, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 255, 255, 0.1),
      transparent 35%
    ),
    #050505;
  overflow-x: hidden;
}

.auth-page {
  position: relative;
  min-height: 100vh;
  padding: 10px 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.auth-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
}

.auth-glow-1 {
  top: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: rgba(255, 0, 128, 0.2);
}

.auth-glow-2 {
  right: -100px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  background: rgba(0, 255, 255, 0.15);
}

.auth-card {
  position: relative;
  z-index: 2;
  padding: 45px;
  border-radius: 30px;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 40px rgba(255, 0, 128, 0.08),
    0 0 80px rgba(0, 255, 255, 0.05);
  overflow: hidden;
}

.auth-logo {
  margin-bottom: 30px;
}

.auth-logo a {
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
}

/* .auth-logo span {
  background: linear-gradient(90deg, #ff4fd8, #6dfdff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.auth-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.auth-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 35px;
}

.form-group-custom {
  margin-bottom: 24px;
}

.form-label-custom {
  display: block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
}


.auth-input {
    width: 100%;
    height: 58px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 500;
    padding-left: 52px;
    padding-right: 52px;
    transition: all 0.3s ease;
}

/* Placeholder */

.auth-input::placeholder {
    color: #9ca3af;
}

/* Focus */

.auth-input:focus {
      background: #ffffff;
    outline: none;
    border-color: #ff4fd8;
    box-shadow:
        0 0 0 4px rgba(255, 79, 216, 0.12);
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  transition: 0.3s ease;
}

.password-toggle:hover {
  color: #6dfdff;
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.form-check-input {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: #ff4fd8;
  border-color: #ff4fd8;
}

.form-check-label {
  color: rgba(255, 255, 255, 0.7);
}

.forgot-link {
  text-decoration: none;
  color: #6dfdff;
  transition: 0.3s ease;
}

.forgot-link:hover {
  color: #fff;
}

.sign-btn {
  width: 100%;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  background: #ff2f7d;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.sign-btn:hover {
  background: #e2256e;
  transform: translateY(-3px);
  box-shadow:
    0 12px 35px rgba(255, 0, 128, 0.25),
    0 12px 35px rgba(0, 255, 255, 0.2);
}

.auth-footer {
  margin-top: 30px;
  text-align: center;
}

.auth-footer p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.auth-footer a {
  color: #ff4fd8;
  text-decoration: none;
  font-weight: 600;
}

.social-divider {
  position: relative;
  text-align: center;
  margin: 30px 0 25px;
}

.social-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.social-divider span {
  position: relative;
  z-index: 2;
  padding: 0 15px;
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.social-login {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition: all 0.35s ease;
}

.social-btn:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 25px rgba(255, 0, 128, 0.15),
    0 10px 25px rgba(0, 255, 255, 0.1);
}

.alert-custom {
  border-radius: 16px;
  border: none;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .auth-page {
    padding: 10px 15px 80px;
  }

  .auth-card {
    padding: 35px 24px;
    border-radius: 24px;
  }

  .auth-title {
    font-size: 2rem;
  }

  .auth-options {
    flex-direction: column;
    align-items: flex-start;
  }
}

.input-wrapper{
    position: relative;
    width: 100%;
}


.input-icon{
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #000000;
    pointer-events: none;
}

.password-toggle{
    position: absolute;
    top: 50%;
    right: 45px;
    /* transform: translateY(-50%); */
    color: #000000;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
}

.password-toggle:hover{
    color: #fff;
}

/* =================================
           AUTH PAGE END
        ================================= */
