.center-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-form {
  font-size: 52px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 50px 0 30px 0;
}


.wrapper {
  max-width: 380px;
  width: 100%;
  padding: 40px 30px 50px 30px;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
}

form label {
  text-align: left;
  width: 100%;
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-family: Inter, sans-serif;
}

form input, select {
  width: 100%;
  display: block;
  margin: 5px 0;
  height: 40px;
  font-size: 20px;
  line-height: 20px;
}

form .bottom {
  padding-bottom: 10px;
}

.policy {
  display: flex;
  align-items: baseline;
  /* Baseline centering */
  align-items: center;
}

form input[type=checkbox] {
  flex: none;
  vertical-align: middle;

  margin: 5px;
  margin-right: 10px;
  width: 20px;
}

form .error {
  color: red;
  text-align: left;
  font-size: 12px;
  margin-bottom: 15px;
}

.remember_me {
  display: flex;
  align-items: center;
  /* Alignement vertical */
}

.remember_me input {
  margin-right: 10px;
  /* Ajoute un petit espace entre la case à cocher et le label */
}

.full-width {
  width: 100%;
}