body {
    font-family: sans-serif;
    color: #384047;
}
  
h1, h2, h3 {
    text-align: center;
    margin-bottom: 25px;
}
  
form {
    max-width: 350px;
    margin: 0px auto;
    padding: 30px 20px;
    background: #f4f7f8;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
  
form > label {
    font-weight: bold;
}

button {
    text-align: center;
    background-color: #379683;
    color: white;
    font-size: 18px;
    width: 100%;
    padding: 20px 40px;
    border-radius: 5px;
    border: none;
    margin-top: 25px;
}

button:hover {
    cursor: pointer;
    background-color: #266b5d;
}

button:active {
    background-color: #379683;
}
  
label {
    display: block;
    margin-bottom: 10px;
}
  
input, textarea {
    border: none;
    font-size: 16px;
    padding: 15px;
    width: 93%;
    background-color: #e8eeef;
    margin-bottom: 15px;
}

textarea {
    resize: none;
}
  
label {
    display: block;
}

.radio-list {
    display: flex;
    justify-content: space-around;
}

.radio-list div {
    width: auto;
    display: flex;
}

.radio-list input {
    margin-right: 5px;
}
  
@media screen and (min-width: 480px) {
    form {
      max-width: 400px;
    }
}