body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Roboto", sans-serif;
}

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

.message-container {
  height: 100px;
  text-align: center;
}

.flashed__messages {
  font-size: 1.5rem;
  color: red;
}

.flashed__messages--success {
  color: rgb(74, 228, 74);
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  background-color: #f2f2f2;
  padding: 2rem 0;
  border-radius: 16px;
  margin-bottom: 100px;
}

img {
  width: 60%;
}

input {
  width: 50%;
  border: none;
  border-radius: 10px;
  padding: 0.4rem 1rem;
  font-size: 18px;
  margin-top: 1.5rem;
}
label {
  margin-top: 1rem;
}
textarea {
  margin-top: 1rem;
  width: 80%;
}
select {
  margin-top: 1rem;
}

button {
  padding: 0.5rem 1.5rem;
  font-size: 18px;
  background-color: black;
  color: whitesmoke;
  border: none;
  border-radius: 10px;
  margin-top: 1rem;
  cursor: pointer;
}

@media (max-width: 1300px) {
  form {
    width: 40%;
  }
}

@media (max-width: 1000px) {
  form {
    width: 70%;
  }
}

@media (max-width: 500px) {
  form {
    width: 90%;
  }
}

@media (max-width: 400px) {
  input {
    width: 70%;
  }
}
