*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222222;
}

.m-center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .m-center {
    text-align: left;
  }
}

.wrapper {
  height: 100vh;
  background-image: url("../images/caribbian.jpg");
  background-size: cover;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.container {
  background: white;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 84%;
}

img {
  max-width: 100%;
  height: auto;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 160px;
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}

.text--lg {
  font-size: 1.125rem;
  max-width: 80%;
  text-align: center;
}

.divider {
  margin-block: 1.5rem;
  border-top: none;
  border-color: #e3e3e3;
  width: 100%;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form {
  -webkit-padding-before: 2rem;
          padding-block-start: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

label {
  font-size: .85rem;
  font-weight: 700;
}

input {
  height: 40px;
  border: 1px solid #cacaca;
  padding-inline: 1rem;
  font-size: 1rem;
}

input[type="submit"], button {
  height: 40px;
  background: #009EDF;
  border: none;
  color: white;
  width: 100%;
}

.fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
/*# sourceMappingURL=main.css.map */