.feedback-form {
    display: flex;
    flex-direction: column;
}
.feedback-form .feedback-form-item {
    display: flex;
    flex-direction: column;
}

.feedback-form .feedback-form-item .feedback-form-item-input {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.feedback-form .feedback-form-item .feedback-form-item-input label {
    width: 200px;
    padding: 5px;
    font-weight: bold;
}
.feedback-form .feedback-form-item .feedback-form-item-input input {
    width: 100%;
    padding: 5px;
    
}
.feedback-form input[type="submit"] {
    margin-top: 10px;
    width: 200px;
}