/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 05 2025 | 09:00:45 */
.wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f0f0f0;
    padding: 60px 40px;
    border-radius: 8px;
}

.wpcf7 .form-field {
    margin-bottom: 40px;
    position: relative;
}

.wpcf7 .form-field:last-of-type {
    margin-bottom: 60px;
}

.wpcf7 .form-field label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 18px;
    font-weight: 300;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.wpcf7 .cf7-input,
.wpcf7 .cf7-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 12px 0;
    font-size: 18px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.wpcf7 .cf7-input:focus,
.wpcf7 .cf7-textarea:focus {
    border-bottom-color: #40c4ff;
}

.wpcf7 .cf7-input:focus + label,
.wpcf7 .cf7-input:not(:placeholder-shown) + label,
.wpcf7 .cf7-textarea:focus + label,
.wpcf7 .cf7-textarea:not(:placeholder-shown) + label {
    top: -20px;
    font-size: 14px;
    color: #40c4ff;
}

.wpcf7 .cf7-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.wpcf7 .submit-btn {
    background-color: #40c4ff;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    float: right;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wpcf7 .submit-btn:hover {
    background-color: #29b6f6;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 40px 20px;
    }
    
    .wpcf7 .form-field label {
        font-size: 16px;
    }
    
    .wpcf7 .cf7-input:focus + label,
    .wpcf7 .cf7-input:not(:placeholder-shown) + label,
    .wpcf7 .cf7-textarea:focus + label,
    .wpcf7 .cf7-textarea:not(:placeholder-shown) + label {
        font-size: 12px;
    }
    
    .wpcf7 .submit-btn {
        width: 100%;
        float: none;
    }
}