
        #contact-form .form-input,
#contact-form .btn-submit {
    width: 100%;
}

#contact-form .btn-submit {
    background-color: #4d4d4d;
    font-size: 16px;
    color: white;
    height: 50px;
    border: none;
}

#contact-form .btn-submit:hover {
    background-color: black;
    font-size: 16px;
    color: white;
    border: none;
}


#contact-form .form-control {
    background-color: #eee; 
    color: #000; 
    font-size: 14px;
    border: 2px solid #4d4d4d; 
}

#contact-form .form-control::placeholder {
    color: #4d4d4d; 
    font-size: 14px;
}

#contact-form .form-control:focus {
    border-color: #4d4d4d; 
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); 
}

    #contact-form textarea#message {
        background-color: #eee; 
        color: #000; 
        border: 2px solid #4d4d4d; 
        font-size: 14px;
        height: 200px; /* Set your desired height here */
        resize: none; /* Prevent resizing by users */
    }

    #contact-form textarea#message::placeholder {
        color: #4d4d4d; 
        font-size: 14px;
    }

    #contact-form textarea#message:focus {
        border-color: #4d4d4d; 
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); 
    }

    .message-box {
    padding: 20px;
    color: white;
    display: none; 
    text-align: center;
    font-size: 16px;
    }

    .message-box.error::before {
    content:none !important;
    }

    .success {
        background-color: green;
    }
    .error {
        background-color: red;
    }

    .margin-top-custom { margin-top: 30px; }  
    .margin-bottom-custom { margin-bottom: 15px; } 

