body {
  height: 100vh;
}

#container-auth {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: url('/images/accueil.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 2em;
  padding-bottom: 2em;
}

.auth-image {
  flex: 1;
  min-width: 300px;
  height: 300px;
  background: url('/images/logo-grand.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.auth-card {
  position: relative;
  width: 800px;
  height: fit-content;
  background-color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  /* backdrop-filter: blur(195px); */
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.5); */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}

.auth-image-box {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.auth-box {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  font-size: 0.9em;
}

.auth-box h3 {
  text-align: center;
  margin-bottom: 1em;
  margin-top: 0.5em;
}

.auth-header {
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically (if needed) */
  width: 100%;
}

/* Style for the small-auth-image div */
.auth-small-image {
  display: none;
  width: 200px; /* Set a specific width */
  height: 30px; /* Set a specific height */
  background: url('/images/logo-small.png') center/contain no-repeat;
  margin-bottom: 1em;
  margin-top: 1em;
}

/* Optional: Style for the h3 */
.auth-header h3 {
  margin: 0; /* Remove default margins */
}

.auth-p-container {
  color: var(--black);
  text-align: center;
}

.auth-p-container p {
  margin-bottom: 0.5em;
}

.auth-p-container p a {
  text-decoration: none;
  font-weight: 600;
  color: var(--black);
}

.auth-p-container p a:hover {
  text-decoration: underline;
}

.auth-button {
  width: 100%;
  height: 3em;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  background-color: var(--black);
  color: var(--white);
  margin-bottom: 1em;
}

@media (max-width: 800px) {
  .auth-card {
    flex-direction: column;
    width: 85%;
  }

  .auth-image {
    display: none;
  }

  .auth-box {
    min-width: 100%;
  }

  .auth-small-image {
    display: flex;
  }
}
