* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins";
}

body {
  background-image: url("assets/background-image-desktop.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.sub-main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 519.16px;
  height: 121.09px;
  margin-bottom: 54px;
}

.subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #515151;
  margin-bottom: 45px;
  margin-left: 12px;
}

.email-field {
  width: 417px;
  height: 42px;
  background: #ffffff;
  border-radius: 48px;
  border: transparent;
  padding: 0 143px 0 26px;
}

.email-field::placeholder {
  color: #afafaf;
}

.email-field-button {
  width: 135px;
  height: 42px;
  background: #1c4736;
  border-radius: 48px;
  color: #ffffff;
  border: transparent;
  position: relative;
  bottom: 42px;
  left: 141px;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  body {
    background-image: url("assets/background-image-mobile.jpeg");
  }

  .logo {
    width: 270px;
    height: 63px;
    margin-bottom: 45px;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .email-field {
    width: 328px;
    height: 43px;
    padding: 0 143px 0 26px;
  }

  .email-field-button {
    width: 106px;
    height: 43px;
    bottom: 43px;
    left: 111px;
  }
}