.form {
    display: flex;
    flex-direction: column;
    width: 250px;
}

.form__name {
    margin-bottom: 10px;
    padding: 5px;
}

.form__textarea {
    margin-bottom: 10px;
    height: 120px;
    text-indent: 5px;
}

.form__button {
    background-color: teal;
    border: 1px solid teal;
    color: white;
    border-radius: 3px;
    width: 35%;
    padding: 7px;
}

.form__button--mod {
    background-color: lightcoral;
    border: 1px solid lightcoral;
    color: white;
    border-radius: 3px;
    width: 35%;
    padding: 7px;
}