/* Inedit Contact - Frontend Form Styles */

.inedit-contact-form-wrapper {
    max-width: 640px;
    margin: 30px auto 0;
    padding: 30px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.inedit-form-group {
    margin-bottom: 20px;
}

.inedit-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.inedit-form-group input[type="text"],
.inedit-form-group input[type="email"],
.inedit-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.inedit-form-group input[type="text"]:focus,
.inedit-form-group input[type="email"]:focus,
.inedit-form-group textarea:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.15);
}

.inedit-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.inedit-contact-submit {
    display: inline-block;
    padding: 12px 30px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.inedit-contact-submit:hover {
    background: #135e96;
}

.inedit-contact-submit:disabled {
    background: #a0a5aa;
    cursor: not-allowed;
}

.inedit-contact-success {
    padding: 12px 16px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
    margin-top: 15px;
    font-size: 14px;
}

.inedit-contact-error {
    padding: 12px 16px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
    margin-top: 15px;
    font-size: 14px;
}

@media screen and (max-width: 600px) {
    .inedit-contact-form-wrapper {
        padding: 20px 15px;
        margin: 20px auto 0;
    }

    .inedit-contact-submit {
        width: 100%;
        text-align: center;
    }
}
