/* Container styling */
#cfp-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Input and textarea styling */
#cfp-form input, 
#cfp-form textarea {
    padding: 14px 18px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    width: 100%;
}

#cfp-form input:focus, 
#cfp-form textarea:focus {
    border-color: #000; /* Vogue-style bold focus */
    background: #fff;
    outline: none;
}

/* Textarea height */
#cfp-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* Button styling */
#cfp-form button {
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    background: #000; /* Vogue black button */
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cfp-form button:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Response message */
#cfp-response {
    font-weight: 500;
    font-size: 0.95rem;
    min-height: 1.5em;
}

/* Turnstile captcha styling */
.cf-turnstile {
    margin: 15px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #cfp-form {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    #cfp-form {
        padding: 20px 15px;
    }
}
