/* SF Advertising - Frontend Form (matches Partner form style) */
.sfad-form-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 15px;
}

.sfad-form .sfad-field {
    margin-bottom: 20px;
}

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

.sfad-form .sfad-req {
    color: #e74c3c;
}

.sfad-form .sfad-muted {
    color: #999;
    font-weight: 400;
    font-size: 13px;
}

.sfad-form input[type="text"],
.sfad-form input[type="email"],
.sfad-form input[type="tel"],
.sfad-form input[type="url"],
.sfad-form select,
.sfad-form textarea {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sfad-form input:focus,
.sfad-form select:focus,
.sfad-form textarea:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.15);
    outline: none;
}

.sfad-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

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

.sfad-row {
    display: flex;
    gap: 16px;
}

.sfad-half {
    flex: 1;
}

@media (max-width: 600px) {
    .sfad-row {
        flex-direction: column;
        gap: 0;
    }
}

.sfad-submit-wrap {
    text-align: center;
    padding-top: 8px;
}

.sfad-submit-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #e91e63;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    line-height: 1.4;
}

.sfad-submit-btn:hover {
    background: #c2185b;
}

.sfad-submit-btn:active {
    transform: scale(0.98);
}

.sfad-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.sfad-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 3px solid #ddd;
    border-top-color: #e91e63;
    border-radius: 50%;
    animation: sfad-spin 0.7s linear infinite;
    vertical-align: middle;
}

@keyframes sfad-spin {
    to { transform: rotate(360deg); }
}

/* Messages */
.sfad-message {
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.sfad-message.sfad-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
}

.sfad-message.sfad-error {
    background: #fce4ec;
    border: 1px solid #ef9a9a;
    color: #c62828;
}

/* Validation inline styles */
.sfad-form input.sfad-invalid,
.sfad-form select.sfad-invalid,
.sfad-form textarea.sfad-invalid {
    border-color: #e74c3c;
}
