/* RESET */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
}

/* BADGE ESPACE ETUDIANT */
.student-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(26, 74, 142, 0.1);
  color: #1a4a8e;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 576px) {
  .student-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}

/* CONTAINER GLOBAL */
.auth-container {
  display: flex;
  height: 100vh;
}

/* LEFT SIDE */
.auth-left {
  width: 50%;
  background: url("../img/flyers/flyer-inscription.jpg") no-repeat center
    center/cover;
  position: relative;
  color: white;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.auth-left .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 50, 0.8),
    rgba(14, 59, 122, 0.8)
  );
}

.auth-left .content {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.auth-left h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.auth-left p {
  opacity: 0.9;
}

.logo {
  width: 80px;
}

/* RIGHT SIDE */
.auth-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fc;
}

/* FORM BOX */
.form-box {
  width: 100%;
  max-width: 400px;
  padding: 30px;
}

/* INPUTS */
.custom-input {
  height: 48px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.custom-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.2);
}

/* BUTTON */
.custom-btn {
  height: 50px;
  border-radius: 10px;
  font-weight: bold;
  background: var(--sgs-blue);
  border: none;
  transition: 0.3s;
}

.custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Button Seconnecter */
.text-connexion {
  color: var(--sgs-orange);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .auth-left {
    display: none;
  }

  .auth-right {
    width: 100%;
  }
}
