

/* Start:/local/components/ws/iblock.form/templates/.default/style.css?17588745416540*/
/* Feedback Form Styles */
.feedback-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.feedback-form-header {
    margin-bottom: 30px;
    text-align: center;
}

.feedback-form-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.feedback-form-user {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feedback-form-user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.feedback-form-user-name {
    font-weight: 600;
    color: #333;
}

.feedback-form-user-email {
    font-size: 14px;
    color: #666;
}

.feedback-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.feedback-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feedback-form-field {

    width: 100%;
}

.feedback-form-field--required .feedback-form-label::after {
    content: ' *';
    color: #e74c3c;
}

.feedback-form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.feedback-form-required {
    color: #e74c3c;
    margin-left: 2px;
}

.feedback-form-input,
.feedback-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.feedback-form-input:focus,
.feedback-form-textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.feedback-form-input:invalid {
    border-color: #e74c3c;
}

.feedback-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.feedback-form-file {
    padding: 8px 12px;
    border: 2px dashed #bdc3c7;
    background: #f8f9fa;
    cursor: pointer;
}

.feedback-form-file:hover {
    border-color: #3498db;
    background: #f0f8ff;
}

.feedback-form-file-info {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    line-height: 1.4;
}

.feedback-form-actions {
    text-align: center;
}

.feedback-form-submit {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 150px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feedback-form-submit:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.feedback-form-submit:active {
    transform: translateY(0);
}

.feedback-form-submit:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.feedback-form-submit-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedback-form-spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feedback-form-error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.feedback-form-error::before {
    content: '⚠';
    font-size: 16px;
}

.feedback-form-success {
    text-align: center;
    padding: 30px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
}

.feedback-form-success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 15px;
}

.feedback-form-success-message {
    font-size: 18px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feedback-form-container {
        padding: 15px;
    }
    
    .feedback-form {
        padding: 20px;
    }
    
    .feedback-form-title {
        font-size: 24px;
    }
    
    .feedback-form-submit {
        width: 100%;
        padding: 15px 20px;
    }
}

/* Loading States */
.feedback-form.loading .feedback-form-submit-text {
    display: none;
}

.feedback-form.loading .feedback-form-submit-loading {
    display: flex !important;
}

.feedback-form.loading .feedback-form-submit {
    pointer-events: none;
}

/* Error States */
.feedback-form-field.error .feedback-form-input,
.feedback-form-field.error .feedback-form-textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.feedback-form-field.error .feedback-form-error {
    display: block;
}

/* File Upload Styles */
.feedback-form-file-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.feedback-form-file-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.feedback-form-file-label {
    display: block;
    padding: 20px;
    border: 2px dashed #bdc3c7;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.feedback-form-file-label:hover {
    border-color: #3498db;
    background: #f0f8ff;
}

.feedback-form-file-icon {
    font-size: 24px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.feedback-form-file-text {
    font-size: 14px;
    color: #666;
}

/* Animation for form submission */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-form-success {
    animation: fadeInUp 0.5s ease-out;
}

/* Focus styles for accessibility */
.feedback-form-input:focus-visible,
.feedback-form-textarea:focus-visible,
.feedback-form-submit:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feedback-form-input,
    .feedback-form-textarea {
        border-width: 3px;
    }
    
    .feedback-form-submit {
        border: 2px solid #000;
    }
}

/* End */
/* /local/components/ws/iblock.form/templates/.default/style.css?17588745416540 */
