﻿.contact-form {
    max-width: 600px; /* Center and constrain width for Figma match */
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Subtle shadow from Figma */
}

    .contact-form h3 {
        font-size: 1.25rem;
        margin-bottom: 5px;
    }

    .contact-form .form-control {
        background-color: #f8f9fa; /* Light gray from Figma */
        border: none;
        border-radius: 10px;
        padding: 12px;
        margin-bottom: 15px; /* Spacing between inputs */
    }

        .contact-form .form-control::placeholder {
            color: #6c757d; /* Gray placeholders */
        }

    .contact-form .btn-dark {
        border-radius: 10px;
        padding: 12px;
    }

    .contact-form .text-center {
        margin-bottom: 20px; /* Increased spacing below heading/subtitle to match Figma */
    }

    .contact-form h3 {
        font-size: 1.5rem; /* Slightly larger for emphasis, adjust if Figma differs */
        font-weight: 600;
        margin-bottom: 5px;
    }

    .contact-form .text-muted {
        font-size: 1rem;
        color: #6c757d;
    }
