.container {
  width: 42vw;
  margin: 0 auto;
}

header {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.form-group label {
  font-size: 1.6rem;
  font-family: 'Montserrat Semibold', sans-serif;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  background: #1a1a1a;
  width: 100%;
  height: 45px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-size: 1.4rem;
  padding: 0 1.5rem;
  outline: none;
  transition: border-color 0.2s ease-in;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #ff7373;
}

.form-group button {
  background-image: linear-gradient(-90deg, #ff7373 0%, #fddb33 100%);
  border-radius: 5px;
  border: 0;
  height: 45px;
  color: #1a1a1a;
  font-size: 1.6rem;
  font-family: 'Montserrat Bold', sans-serif;
  cursor: pointer;
}

.form-group:last-child {
  margin-top: 4rem;
}

.result-container {
  margin-top: 5rem;
}

.result-content {
  margin: 1rem 0 4rem 0;
  background: #1a1a1a;
  border-radius: 5px;
  padding: 1.5rem;
}

.result-content ul {
  list-style: none;
}

.result-content ul li {
  font-size: 1.4rem;
  font-weight: bold;
  font-family: 'Montserrat Bold', sans-serif;
  line-height: 3rem;
}

.result-content ul li strong {
  color: #ff7373;
}

@media (max-width: 770px) {
  .container {
    width: 70vw;
  }
}
