.container {
  display: flex;
  flex-direction: column;
  align-items: stretch;

  margin: 0 auto;
  width: 100%;
  max-width: 1200px;

  position: relative;
}

.form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;

  margin: 30px 0;
}

@media screen and (min-width: 768px) {
  .form-container {
    margin: 0;
  }
}

.form {
  display: flex;
  align-items: center;
  flex-direction: column;

  width: 90%;
  border-radius: 5px;
  border: solid 1px #1a3c2a76;
  padding: 15px;

  background-color: #fbf6ed;
  box-shadow: 0px 4px 4px rgba(26, 60, 42, 0.25);
}

@media screen and (min-width: 768px) {
  .form {
    align-items: flex-start;
    width: 85%;
    margin: 34px 0;

    background-image: url('../images/horse-form.png');
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: right 0;
  }
}

@media screen and (min-width: 1024px) {
  .form {
    align-items: flex-start;
    background-size: 350px;
    width: 80%;
  }
}

@media screen and (min-width: 1200px) {
  .form {
    background-size: 400px;
  }
}

.form-contents {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;

  max-width: 300px;
}

@media screen and (min-width: 480px) {
  .form-contents {
    max-width: 450px;
  }
}

@media screen and (min-width: 768px) {
  .form-contents {
    max-width: initial;
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .form-contents {
    padding: 20px;
  }
}

.form-contents .input-text {
  width: 100%;
  margin-bottom: 10px;
}

.form-contents .input-text input {
  width: 100%;
  padding: 4px 10px;
  border-radius: 10px;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1A3C2A;

  border: 1px solid #1A3C2A;
}

.form-contents .input-text input::placeholder {
  font-weight: 600;
  font-size: 18px;
  color: #1A3C2A;
}

@media screen and (min-width: 360px) {
  .form-contents .input-text input::placeholder {
    font-weight: 600;
    font-size: 14px;
  }
}

@media screen and (min-width: 1024px) {
  .form-contents .input-text input::placeholder {
    font-weight: 600;
    font-size: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .form-contents .input-text input::placeholder {
    font-weight: 600;
    font-size: 18px;
  }
}



@media screen and (min-width: 1200px) {
  .form-contents .input-text input {
    width: 400px;
    max-width: 450px;
    padding: 10px 30px;
  }
}

.btn-radio {
  display: flex;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .btn-radio {
    margin-top: 5px;
  }
}

.btn-radio input {
  margin-right: 7px;
  margin-bottom: 50px;
}

@media screen and (min-width: 1024px) {
  .btn-radio input:hover {
    cursor: pointer;
  }
}

.btn-radio p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #1A3C2A;
}

@media screen and (min-width: 1024px) {
  .btn-radio p {
    font-size: 14px;
  }
}


.btn-cadastrar {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #1A3C2A;

  margin-top: 20px;

  transition: .5s ease;
}

@media screen and (min-width: 480px) {
  .btn-cadastrar {
    padding: 10px 30px;
  }
}

@media screen and (min-width: 768px) {
  .btn-cadastrar {
    margin-top: 10px;
    padding: 10px 35px;
  }
}

@media screen and (min-width: 1024px) {
  .btn-cadastrar {
    padding: 13px 40px;
    font-size: 18px;
  }

  .btn-cadastrar:hover {
    filter: brightness(1.3);
    transform: translateY(-2px);
    box-shadow: 0px 8px 10px #1a3c2a4a;
  }
}