/* Container styling */
#lf_form_container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

/* Form title */
#lf_form_container h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Subtitle */
#lf_form_container .form-subtitle {
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Input field styling */
#lf_form_container input[type="text"],
#lf_form_container input[type="email"],
#lf_form_container input[type="tel"],
#lf_form_container textarea {
    width: 100%;
    padding: 1rem 0.75rem;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    background: #f8f9fa;
    border-radius: 4px 4px 0 0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    margin-bottom: 1.5rem;
}

/* Input focus state */
#lf_form_container input:focus,
#lf_form_container textarea:focus {
    outline: none;
    border-bottom-color: #3b82f6;
    background: white;
}

/* Label styling */
#lf_form_container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

/* Submit button */
#lf_form_container input[type="submit"],
#lf_form_container button[type="submit"] {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

/* Submit button hover */
#lf_form_container input[type="submit"]:hover,
#lf_form_container button[type="submit"]:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Message textarea specific styling */
#lf_form_container textarea {
    min-height: 120px;
    resize: vertical;
}

/* Required field indicator */
#lf_form_container .required {
    color: #ef4444;
}

/* Form validation messages */
#lf_form_container .error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #lf_form_container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    #lf_form_container h3 {
        font-size: 1.5rem;
    }
}

.lf_success{
    text-align: center;
    color: white;
}