.addform-comment * {
    box-sizing: border-box!important;
}

.addform-comment {
    display: flex;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.addform-image {
    flex: 0 0 50px;
    margin-right: 15px;
}


.addform-form {
    width: 100%;
}

.addform-input {
    width: 100%;
    padding: 5px 10px;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 10px;
    resize: none;
    font-weight: 400;
    border-radius: 2px;
    border:1px solid; 
}

.addform-error {
    border-color: red;
}

.addform-text {
    height: 120px;
    font-size: 16px;
}


.addform-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addform-btn {
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    padding: 8px 22px;
    background: #cfcfcf;
    border-radius: 2px;
}

.addform-btn:hover {
    background: #c1bebe;
}

.addform-quote {
    font-size: 12px;
}

@media (max-width: 460px) {
    .addform-btn {
        padding: 4px 14px;
    }
}