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

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 1em;
  font-family: "Rubik", sans-serif;
  overflow: hidden;
  color: #fff;
  background-color: #121212;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: 1rem;
  color: currentColor;
}

label,
button {
  cursor: pointer;
}

.container {
  top: 50%;
  width: 300px;
  margin: auto;
}

.logo {
  width: 300px;
  margin: 0 auto 0.5em;
}
.logo img {
  max-width: 100%;
}

.form {
  padding: 1rem;
  color: #121212;
  background-color: #fff;
  border: 1px solid rgba(32, 66, 149, 0.5);
  border-radius: 5px;
  overflow: hidden;
}
.form__title {
  margin: 0 0 1em;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.form__field {
  display: block;
  margin-bottom: 1em;
}
.form__field__label {
  display: block;
  margin-bottom: 5px;
  color: rgba(18, 18, 18, 0.75);
}
.form__field__input {
  width: 100%;
  min-height: 2rem;
  padding: 0.33em 0.5em;
  font-size: inherit;
  border: 1px solid rgba(32, 66, 149, 0.5);
  border-radius: 5px;
}
.form__field__input--textarea {
  height: 5rem;
}
.form__field__input:invalid {
  border-color: #a61717;
}
.form__button {
  width: 100%;
  height: 2rem;
  color: #fff;
  background: #204295;
  background: linear-gradient(90deg, #204295 0%, #3b6fae 71%, #62afd0 100%);
  border: 0;
  border-radius: 5px;
}

.description {
  margin-top: 1em;
  font-size: 12px;
  text-align: center;
}

.siret {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.message--success {
  font-size: 19px;
  text-align: center;
  color: #adff2f;
}
.form__field--error .message--error {
  font-size: 12px;
  color: #a61717;
}

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