.fca-410-wrapper {
    max-width: 100%;
}

.fca-410-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #29332F;
}

.fca-410-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.fca-410-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fca-410-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fca-410-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #29332F;
}

.fca-410-required {
    color: #EE551F;
}

.fca-410-input,
.fca-410-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.fca-410-input:focus,
.fca-410-textarea:focus {
    outline: none;
    border-color: #7BA7A2;
}

.fca-410-textarea {
    resize: vertical;
    min-height: 120px;
}

.fca-410-file-input {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.fca-410-help-text {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.fca-410-button-wrapper {
    display: flex;
    width: 100%;
}

.fca-410-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #EE551F;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fca-410-button:hover {
    background-color: #d64a1a;
}

.fca-410-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fca-410-message-container {
    margin-top: 1rem;
}

.fca-410-message {
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
}

.fca-410-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.fca-410-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .fca-410-title {
        font-size: 1.5rem;
    }
}