* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  font-family: Arial, sans-serif;
  background:  linear-gradient(
      135deg,
      #083ee1,
      #3a73ed
  );
  min-height: 100vh;
}

/* =========================
   LAYOUT
========================= */

.auth-container {

  display: flex;
  min-height: 100vh;

}

/* =========================
   LEFT SIDE
========================= */

.auth-left {

  flex: 1;

  position: relative;

  background:
    url("../img/img-umroh.jpg");

  background-size: cover;
  background-position: center;

  align-items: center;
  justify-content: center;

}

.auth-overlay {

  position: absolute;
  inset: 0;

  background:
    rgba(0,0,0,0.5);

}

.auth-content {

  position: relative;
  z-index: 10;

  color: white;
  max-width: 500px;
  text-align: center;
  padding: 2rem;

}

.auth-content h1 {

  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;

}

/* =========================
   RIGHT SIDE
========================= */

.auth-right {

  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 2rem;

}

.auth-card {

  width: 100%;
  max-width: 450px;

  padding: 2rem;

  border-radius: 24px;

  background:
    rgba(255,255,255,0.15);

  backdrop-filter: blur(20px);

  border:
    1px solid rgba(255,255,255,0.2);

  color: white;

}

/* =========================
   FORM
========================= */

.form-control {

  height: 60px;
  border-radius: 14px;
  border: none;

}

.form-floating label {

  color: #666;

}

.password-toggle {

  position: absolute;

  top: 50%;
  right: 15px;

  transform: translateY(-50%);

  border: none;
  background: transparent;

  z-index: 20;
}

/* =========================
   BUTTON
========================= */

.btn-auth {

  height: 55px;

  border-radius: 14px;
  border: none;

  font-weight: 600;

  background: white;
  color: #4f46e5;

  transition: 0.3s;

}

.btn-auth:hover {

  transform: translateY(-2px);

  background: #f3f4f6;

}

/* =========================
   SOCIAL
========================= */

.social-login {

  display: flex;
  gap: 1rem;

}

.btn-social {

  flex: 1;

  height: 50px;

  border-radius: 14px;

  background: rgba(255,255,255,0.2);

  border: none;

  color: white;

}

/* =========================
   DIVIDER
========================= */

.divider {

  text-align: center;
  margin: 1.5rem 0;

  position: relative;

}

.divider::before {

  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 100%;
  height: 1px;

  background: rgba(255,255,255,0.3);

}

.divider span {

  position: relative;

  padding: 0 1rem;

  background: transparent;

}

/* =========================
   LINK
========================= */

.auth-link,
.forgot-link {

  color: white;
  text-decoration: none;
  font-weight: 600;

}

.auth-link:hover,
.forgot-link:hover {

  text-decoration: underline;

}

/* =========================
   FORGOT PASSWORD
========================= */

.forgot-icon {

  width: 90px;
  height: 90px;

  margin: auto;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    rgba(255,255,255,0.2);

  font-size: 32px;
  color: white;

  backdrop-filter: blur(10px);

}

.alert-success {

  border: none;

  background:
    rgba(34,197,94,0.2);

  color: white;

}