.wcf-form-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 15px;
    background: #f9f9f9;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.wcf-contact-form input,
.wcf-contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}
.wcf-contact-form input:focus,
.wcf-contact-form textarea:focus {
    border-color: #1d3557;
    outline: none;
}
.wcf-contact-form button {
    width: 100%;
    background: #e63946;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
.wcf-contact-form button:hover {
    background: #d62839;
}
.wcf-success-message {
    margin-top: 10px;
    background: #38b000;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.wcf-success-message.show {
    display: block;
    opacity: 1;
}
