body {
    font-family: "Inter", "Inter Fallback", sans-serif;
    min-height: 100vh;
    color: rgb(55, 53, 47);
    background-color: #e9faeb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: rgb(33, 33, 33);
}

a {
    color: #189726;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #189726;
}

main {
    max-width: 700px;
    padding-bottom: 7rem;
    padding: 5px 8px;
}

form {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

form p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
}

form p label {
    font-weight: 600;
    margin-bottom: 0.3em;
}

form p input,
form p textarea,
form p select {
    font-size: 1em;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(60, 59, 53, 0.16) 0px 0px 0px 1px, rgba(60, 59, 53, 0.08) 0px 2px 5px 0px;
}

button[type="submit"] {
    background-color: #189726;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.7em 1.5em;
    font-size: 1em;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(60, 59, 53, 0.16) 0px 0px 0px 1px, rgba(60, 59, 53, 0.08) 0px 2px 5px 0px;
}



.choices__input {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5em;
    margin-left: 1px;
    margin-right: 1px;
    margin-top: 5px;
}

.choices__inner {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

textarea,
input,
select {
    max-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-width: none;
}


textarea {
    width: 100%;
}