/* static/css/pages/feedback.css */
/* Страница обратной связи: расширенные стили формы, капча, футер. */

body {
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: #EEF5FB;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-title {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* Расширенные стили формы (textarea, file, helptext, errorlist) */

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    background: #f9f9f9;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group .help-text {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.form-group .errorlist {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
    color: #c33;
    font-size: 12px;
}

/* Переопределение .btn-primary для отключённого состояния (кнопка блокируется до прохождения капчи) */

.btn-primary:hover:not(:disabled) {
    background: #4A8BC8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 155, 213, 0.3);
}

.btn-primary:hover {
    /* Сброс hover-эффекта для disabled состояния */
    background: #5B9BD5;
    transform: none;
    box-shadow: none;
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

#captcha-container {
    margin-bottom: 20px;
}

#captcha-widget {
    min-height: 100px;
}

.consent-text {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

.consent-text a {
    color: #5B9BD5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.consent-text a:hover {
    color: #4A8BC8;
    text-decoration: underline;
}

/* Переопределение footer-doc-link для страницы feedback */

.footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-doc-link {
    color: #5B9BD5;
}

.footer-doc-link:hover {
    color: #4A8BC8;
    text-decoration: underline;
}

.footer p {
    color: #888;
    font-size: 12px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    .main-title {
        font-size: 24px;
    }
}
