.form {
    display: flex;
    flex-direction: column;
    width: 200px;
}

.form__description {
    margin-bottom: 2px;
    font-weight: bold;
}

.form__name {
    padding: 7px
}

.form__textarea {
    height: 150px;
    margin-top: 10px;
    text-indent: 5px;
    padding-top: 5px;
}

.form__button {
    background-color: darkcyan;
    color: white;
    width: 40%;
    border: none;
    border-radius: 3px;
    padding: 10px;
    margin-top: 10px;
}