/*
Theme Name: 10Media Theme
Author: 10Media
Description: Custom Reputation Intelligence Theme
Version: 1.0
*/

/* עיצוב לטופס Contact Form 7 שייראה כמו העיצוב שלנו */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    background-color: rgba(2, 6, 23, 0.5); /* dark/50 */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem; /* rounded-xl */
    padding: 1rem;
    color: white;
    outline: none;
    transition: all 0.3s;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #f97316; /* brand-accent */
}

.wpcf7-submit {
    width: 100%;
    background: linear-gradient(to right, #f97316, #6366f1);
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.wpcf7-submit:hover {
    opacity: 0.9;
    transform: scale(1.02);
}