.form{
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.name{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
.email{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

form{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
}

input{
  height: 40px;
  width: 250px;
  border: none;
  border-bottom: 2px solid black;
  outline: none;
}

input::placeholder {
  font-weight: 400;
  font-size: 20px;
}

select{
  height: 40px;
  width: 250px;
  border: none;
  border-bottom: 2px solid black;
  outline: none;
}

label{
  font-weight: 600;
  font-size: 1.5rem;
}
.submit{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: auto;
  flex-wrap: wrap;
}

button{
  margin: 10px;
  cursor: pointer;
  height: 40px;
  width: 250px;
  color: white;
  background-color: #24527a;
  border: none;
}


#submit{
  margin: 10px;
  border: 1px solid black;
  text-align: center;
  color: white;
  background-color: #24527a;
  cursor: pointer;
}


@media (max-width: 600px) {
  form{
    text-align: center;
    align-items: center;
  }

  .submit{
    justify-content: center;
  }
}