/* General styling for the contact form */
.contact-form-wrapper {
    padding: 0.5rem 0;
    margin-top: 2rem;
}

.contact-form {
    padding: 30px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 8px 8px 8px 0px #27002e8f;
}

form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-input,
.contact-form .form-text-area {
    background-color: #F5F5F5;
    height: 50px;
    padding-left: 16px;
    color: #262626;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    /* Focus effect for input fields */
    .contact-form .form-input:focus,
    .contact-form .form-text-area:focus {
        outline: none;
        border-color: #f33fb0;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07), 0 0 8px #1D7266;
    }

/* Specific input types styling */
input[type="text"],
input[type="password"],
input[type="email"] {
    font-family: 'Arial', sans-serif;
}

/* Select styling */
select.form-control {
    font-family: 'Arial', sans-serif;
    background-color: #F5F5F5;
    border: 2px solid #ddd;
    padding-left: 16px;
    font-size: 16px;
    height: 50px;
    border-radius: 5px;
    color: #262626;
}

/* Placeholder styling */
.contact-form .form-control::placeholder {
    color: #aeb4b9;
    font-weight: 500;
    opacity: 1;
}

/* Optional: Adjusting the layout for mobile responsiveness */
@media (max-width: 768px) {
    .contact-form {
        width: 100%;
        padding: 20px;
    }

    .form-input,
    select.form-control {
        font-size: 14px;
        height: 45px;
    }
}
