*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.inscription-page {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.inscription-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem;
}

.inscription-col {
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-basis: 100%;
}

.inscription-col-between {
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-basis: 100%;
  justify-content: space-between;
}

.inscription-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 40px;
  width: 480px;
  display: flex;
  flex-direction: column;
}
.inscription-card h1,
.inscription-card h2 {
  margin: 0.5em 0;
}

.inscription-label {
  font-weight: 500;
}

.inscription-label-required {
  font-weight: 500;
}
.inscription-label-required::after {
  content: " *";
  color: #dd640d;
}

.login-field {
  margin: 15px 0;
  width: 100%;
}

.inscription-card .login-field > input,
.inscription-card .login-field > select {
  width: 100%;
  border: 1px solid #f7f5f5;
  border-radius: 8px;
  padding: 20px 24px;
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.0509803922);
  font-family: inherit;
  font-size: 16px;
}

.inscription-submit {
  margin-top: auto;
}

#boutonConnexion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  color: #ffffff;
  padding: 18px 12px;
  margin-top: 10px;
  border: 1px solid #f7f5f5;
  border-radius: 6px;
  background: linear-gradient(125deg, #518ab9, #75aad6);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.0509803922);
  font-weight: 500;
  font-size: medium;
  cursor: pointer;
  font-family: inherit;
}
#boutonConnexion:hover {
  background: linear-gradient(-125deg, #518ab9, #75aad6);
}

#retourConnexion {
  color: #336b9a;
  text-decoration: none;
  font-weight: 500;
}
#retourConnexion:hover {
  text-decoration: underline;
}

.error-message,
p.error {
  color: #dd640d;
  font-size: 14px;
  margin-top: 4px;
  margin-bottom: 0;
}

.multi-select-option-radio {
  flex-shrink: 0;
}

#logo {
  display: block;
  margin: 0 auto 30px;
  max-width: 150px;
  height: auto;
}

@media screen and (max-width: 640px) {
  .inscription-card {
    width: 100%;
    padding: 20px 16px;
    border-radius: 8px;
  }
  #logo {
    max-width: 120px;
  }
  .inscription-card .login-field > input,
  .inscription-card .login-field > select {
    padding: 16px 20px;
    font-size: 16px;
  }
}
.toggle {
  cursor: pointer;
  display: inline-block;
}
.toggle.charte {
  margin-left: 10%;
}

.toggle-switch {
  cursor: pointer;
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 58px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
  background: #59A96F;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}
.toggle-checkbox:disabled + .toggle-switch {
  background: lightgrey;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

/*# sourceMappingURL=inscription.css.map */
