.form {
    width: max-content;
    max-width: 95%;
    padding: 10px;
    background-color: honeydew;
    border-radius: 5px;
}

@media(min-width: 768px) {
    .form {
        min-width: 50%;
    }
}
@media(max-width: 768px) {
    .form {
        min-width: 80%;
    }
}

textarea {
    width: 100%;
}

input[type='text'] {
    width: 100%;
}