@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* porque é variável */
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100dvh;
  background: #3d318a;
}

.layout {
  display: flex;
  min-height: 100dvh;
}

.left {
  width: 50%;
  background-image: url("img/foto.png");
  background-size: cover;
  background-position: 15% center; 
  background-repeat: no-repeat;
}

.right {
  width: 50%;
  background: #3d318a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  width: 70%;
  text-align: center;
  color: white;
}

.content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.content p {
  font-size: 25px;
  margin-bottom: 30px;
}

form input {
  width: 80%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 20px;
  border: none;
  outline: none;
  background: #e6e6e6;
}

button {
  width: 80%;
  padding: 14px;
  border-radius: 25px;
  border: none;
  background: #f2b705;
  color: #1a1a1a;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #d99e04;
}

@media (max-width: 768px) {

  .layout {
    flex-direction: column;
    min-height: 100dvh;
  }

  /* IMAGEM EM CIMA */
  .left {
    width: 100%;
    height: 310px;
    background-position: 5% center;
  }

  /* BLOCO ROXO */
  .right {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    flex: 1;
  }

  .content {
    width: 70%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* TÍTULO */
  .content h1 {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .content p {
    font-weight: 100;
    font-size: 18px;
    margin-bottom: 10px;
  }

  /* INPUTS */
  form input {
    padding: 6px;
    font-size: 14px;
    border-radius: 30px;
  }

  /* BOTÃO */
  button {
    padding: 16px;
    border-radius: 30px;
    font-size: 16px;
  }
}
