.feedback-form-wrapper {

}

.feedback-form-wrapper h1 {
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    color: #222222;
    margin: 0;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section h2 {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #222222;
    margin: 0;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.form-row.label-top {
    align-items: flex-start;
}

.form-row .field-label {
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    color: #4E4E4E;
    width: 155px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.form-row .field-label .required {
    color: #EB5757;
}

.form-input,
.form-select,
.form-textarea {
    width: 410px;
    height: 50px;
    background: #F8F8F8;
    border: 1px solid #F4F4F3;
    border-radius: 16px;
    padding: 0 20px;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    color: #222222;
    box-sizing: border-box;
    outline: none;
}

.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
    color: #8C8C8B;
}

.form-textarea {
    height: 200px;
    padding: 20px;
    resize: none;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238C8C8B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.file-attached {
    width: 410px;
    height: 90px;
    border: 1px dashed #09A3FB;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.file-attached-preview {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-attached-preview img {
    width: 65px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.file-attached-name {
    font-weight: 300;
    font-size: 12px;
    line-height: 130%;
    color: #484846;
}

.file-delete {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #09A3FB;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.file-add {
    width: 410px;
    height: 50px;
    border: 1px dashed #8C8C8B;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #8C8C8B;
    background: none;
    position: relative;
    overflow: hidden;
}

.file-add input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 410px;
}

.captcha-row img {
    width: 116px;
    height: 38px;
}

.captcha-row .form-input {
    width: 280px;
}

.form-submit {
    width: 100%;
    height: 60px;
    background: #FFB401;
    border-radius: 40px;
    border: none;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
    cursor: pointer;
    text-transform: lowercase;
}

.agreement-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    color: #4E4E4E;
}

.agreement-row a {
    color: #09A3FB;
    text-decoration: underline;
}

.error-text {
    color: #EB5757;
    font-size: 12px;
    margin-top: 4px;
}

.form-row .field-wrap {
    width: 410px;
    display: flex;
    flex-direction: column;
}
