body {
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;

  font-family: "Rubik";
  font-weight: 300;
}

.header {
  height: 2%;
  width: 100%;
  background-color: #e74011;
}

.footer{
  height: 8%;
  width: 100%;
  background-color: #e74011;
}

.content {
  background-image: url("https://image.novidades.efacil.com.br/lib/fe2a11747364057f731277/m/1/5588a53f-75df-4d8b-9899-a2447206a249.jpg");
  height: 90%;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background-color: #2dafe6;
  width: 580px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 16px;

  gap: 24px;

  position: relative;
}

.martins-logo {
  width: 100px;
  padding: 16px;
}

p {
  margin: 0;
  color: white;
}

.title {
  font-size: 20px;
  color: white;

  margin-bottom: 16px;
}

.subtitle {
  margin-bottom: 16px;
}

span {
  font-weight: bold;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.options-container {
  display: flex;
  flex-direction: column;
}

.option {
  background-color: #2d94ff;
  padding: 12px;
  border-radius: 8px;
}

.option:hover {
  background-color: #ee7203;
  cursor: pointer;
}

button {
  margin-top: 16px;
  align-self: flex-end;
  background-color: #ee7203;
  border: 0;
  color: white;
  padding: 8px;

  cursor: pointer;
}

.email-icon {
  width: 100px;
  height: 100px;
  position: absolute;
  right: -2rem;
  top: -2rem;
}

@media (max-width: 768px) {
  .container {
    width: 400px;
    padding: 32px;
  }

  .martins-logo {
    height: 50px !important;
    width: 50px !important;
    padding: 8px !important;
  }

  .email-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    right: -1.5rem;
    top: -1.5rem;
  }

  .title {
    font-size: 16px !important;
    color: white;
  }
}

@media (max-width: 520px) {
  .container {
    width: 350px;
    padding: 16px;

    display: flex;
    flex-wrap: wrap;

    margin-left: 8px;
    margin-right: 8px;
  }

  .martins-logo {
    height: 30px !important;
    width: 30px !important;
    padding: 4px !important;
  }

  .email-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
  }
}