/* Form Wrapper */
.simple-contact-form-wrapper {
    max-width: 400px;
    margin: 30px auto;
    padding: 25px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
small.error.error-message {
    display: none;
}
small.valid-icon.phone-valid {
    display: none;
}
small.valid-icon.email-valid {
    display: none;
}
.simple-contact-form-wrapper input, .simple-contact-form-wrapper textarea, .simple-contact-form-wrapper button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    background: #133066;
    color: #fff;
    padding: 20px;
}
/* Inputs & Textarea */
.simple-contact-form-wrapper input,
.simple-contact-form-wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

/* Textarea */
.simple-contact-form-wrapper textarea {
    resize: vertical;
    min-height: 100px;
}

/* Focus */
.simple-contact-form-wrapper input:focus,
.simple-contact-form-wrapper textarea:focus {
    border-color: #133066;
}

/* Submit Button */
.simple-contact-form-wrapper button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: #133066;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.simple-contact-form-wrapper button:hover {
    background: #0f2550;
}

/* Error Messages (hidden by default) */
.error {
    display: none;
    color: #e74c3c;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Valid & Invalid Inputs */
.input-valid {
    border-color: #2ecc71 !important;
}

.input-invalid {
    border-color: #e74c3c !important;
}

/* Valid Check Icon */
.valid-icon {
    display: none;
    color: #2ecc71;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Response Message */
#simple-contact-response {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
}

/* Success Message */
#simple-contact-response.success {
    color: #2ecc71;
}

/* Error Message */
#simple-contact-response.error {
    color: #e74c3c;
}

/* Mobile Friendly */
@media (max-width: 480px) {
    .simple-contact-form-wrapper {
        padding: 20px;
    }
}
