.form-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-top:25px;
  background-color: #fff;
  border-radius: 20px;
}

.result p {
  font-size: 20px;
  font-weight: 700;
}

.result-error {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-top:25px;
  background-color: #ff0000;
  color: #fff;
  border-radius: 20px;
}

.separator {
  background-color: goldenrod;
  height: 3px;
  width: 100%;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.container {
  display: flex;
  flex-direction:column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #fff;
  padding: 20px;
  margin: 30px;
  box-shadow: 5px 5px 5px;
}

