/* Extracted verbatim from page-contact.php (1 inline block(s)).
   Order preserved; enqueue order in functions.php reproduces the original cascade. */

/* Contact Form Specific Styles */
.contact-form-3d .form-group {
    margin-bottom: 1.5rem;
}

.form-control-3d,
.form-select.form-control-3d {
    background: rgba(31, 31, 52, 0.6);
    border: 1px solid rgba(208, 177, 212, 0.32);
    border-radius: 0.75rem;
    color: var(--ct-text);
    padding: 0.875rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control-3d:focus,
.form-select.form-control-3d:focus {
    background: rgba(31, 31, 52, 0.8);
    border-color: var(--ct-accent);
    color: var(--ct-text);
    box-shadow: 0 0 0 0.2rem rgba(191, 171, 211, 0.25);
    outline: 0;
}

.form-control-3d::placeholder {
    color: var(--ct-muted);
    opacity: 0.6;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--ct-muted);
}

@media (max-width: 767.98px) {
    .contact-form-3d .form-group {
        margin-bottom: 1.25rem;
    }
}
