@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
body {
  background-image: url(../Assets/Background.png);
  background-position: center;
  background-size: cover;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background-repeat: no-repeat;
  margin: 0;
  height: 100vh;
  font-family: "Roboto", sans-serif;
}

body h1,
body h2 {
  font-weight: 700;
}

body h3 {
  font-weight: 400;
  color: #65b1c6;
}

body a {
  color: #003345;
  font-weight: 700;
}

body main {
  max-width: 700px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 1px solid grey;
  border-radius: 10px;
  overflow: hidden;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

body main section:first-child {
  width: 100%;
  background-color: #003345;
  color: #fff;
  text-align: center;
}

body main section:first-child img {
  height: 350px;
  width: 250px;
  max-width: 250px;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

body main section:nth-child(2) {
  height: 100%;
  background-color: #fff;
  padding: 0 20px;
}

body main section:nth-child(2) form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

body main section:nth-child(2) form input {
  padding: 15px;
  border: 1px solid grey;
  border-radius: 5px;
}

body main section:nth-child(2) form button {
  background-color: #003345;
  padding: 15px;
  color: #fff;
  border-radius: 5px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

body main section:nth-child(2) form label:nth-child(1),
body main section:nth-child(2) form label:nth-child(2) {
  font-weight: 700;
}

@media (max-width: 768px) {
  body main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*# sourceMappingURL=style.css.map */