.form-card form,
.chat-placeholder-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input,
.textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.textarea {
    min-height: 130px;
    resize: vertical;
}

.notice {
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.notice.success {
    color: var(--success);
}

.notice.error {
    color: var(--danger);
}

.mobile-feedback-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.mobile-input,
.mobile-textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.mobile-input::placeholder,
.mobile-textarea::placeholder {
    color: #8fa1c7;
}

.mobile-input:focus,
.mobile-textarea:focus {
    border-color: rgba(104, 139, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-textarea {
    min-height: 140px;
    resize: vertical;
}

.primary-button {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border-radius: 999px;
    padding: 14px 18px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.primary-button:hover,
.primary-button:focus {
    background: rgba(104, 139, 255, 0.14);
    border-color: rgba(104, 139, 255, 0.45);
}

.primary-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.notice {
    min-height: 24px;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 0.95rem;
    line-height: 1.45;
    background: rgba(255, 255, 255, 0.04);
    color: #c9d7f2;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.notice.success {
    color: #b9ffd0;
    background: rgba(80, 200, 120, 0.08);
    border-color: rgba(80, 200, 120, 0.24);
}

.notice.error {
    color: #ffd0d0;
    background: rgba(255, 80, 80, 0.08);
    border-color: rgba(255, 80, 80, 0.24);
}

.honeypot-field,
.sr-only {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}