/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 21 2025 | 00:14:27 */
/* General Form Styling */
.wpcf7-form {
    font-family: Arial, sans-serif;
    text-align: left;
    margin: 0 auto;
    max-width: 400px;
    background-color: #ffffff;
}

/* Label Styling */
.wpcf7-form p label {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: #000000;
    margin-bottom: 5px;
}

/* Input and Textarea Styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #000000;
    font-size: 14px;
    margin-bottom: 20px;
    background-color: transparent;
    color: #000000;
    outline: none;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    border-bottom-color: #999999;
}

/* Textarea Height */
.wpcf7-form textarea {
    height: 80px;
    resize: none;
}

/* Submit Button Styling */
.wpcf7-form input[type="submit"] {
    background-color: #444444;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    border: 2px solid #FFD700; /* Gold border */
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #333333;
}

/* Placeholder Styling */
.wpcf7-form ::placeholder {
    color: #999999;
    font-size: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .wpcf7-form {
        padding: 15px;
    }

    .wpcf7-form p label {
        font-size: 12px;
    }
}
