/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 21 2025 | 09:39:07 */
/*
 * Soft UI Form Container
 * On your page, wrap the CF7 shortcode in a div with this class:
 * <div class="soft-ui-form-container"> [contact-form-7 id="..."] </div>
*/
.soft-ui-form-container {
    --bg-color: #e0e0e0; /* The light background essential for this style */
    --primary-color: #6d5dfc;
    --text-color: #3d3d3d;
    --shadow-light: rgba(255, 255, 255, 0.7);
    --shadow-dark: rgba(163, 177, 198, 0.6);
    font-family: 'Poppins', sans-serif;
    padding: 50px;
    border-radius: 20px;
  
}

/* Form heading */
.soft-ui-form-container h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 30px;
}

/* Wrapper for each field to manage labels */
.soft-ui-form-container .form-field {
    position: relative;
    margin-bottom: 25px;
}

/* The base style for all input fields */
.soft-ui-form-container .wpcf7-form-control {
    width: 100%;
    border: none;
    outline: none;
    background: var(--bg-color);
    padding: 5px 5px;
    font-size: 16px;
    color: var(--text-color);
    border-radius: 12px;
    /* The "pushed-in" or concave shadow effect */
       border: 0.003em solid #000;
}

.soft-ui-form-container .wpcf7-textarea {
    min-height: 50px;
    resize: vertical;
}

/* Floating label styling */
.soft-ui-form-container .form-field label {
    position: absolute;
    top: 10px;
    left: 16px;
    color: #7A2C45;
    font-size: 12px; /* MODIFIED: Set initial font size */
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

/* Animate label when field is focused or filled */
.soft-ui-form-container .wpcf7-form-control:focus + label,
.soft-ui-form-container .wpcf7-form-control:not(:placeholder-shown) + label {
    top: -17px;
    left: 12px;
    font-size: 12px;
    color: #7A2C45
    padding: 0 5px;
    /* MODIFIED: The background property has been removed */
}

/* Submit button with the "extruded" or convex effect */
.soft-ui-form-container .wpcf7-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
        color: #ffffff !important;
    background-color: #7a2c45;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow:
        -5px -5px 10px var(--shadow-light),
        5px 5px 10px var(--shadow-dark);
    transition: all 0.3s ease-in-out;
}

/* Press effect on button hover and click */
.soft-ui-form-container .wpcf7-submit:hover {
    color: #000 !important;
}

.soft-ui-form-container .wpcf7-submit:active {
    box-shadow: 
        inset 5px 5px 8px var(--shadow-dark),
        inset -5px -5px 8px var(--shadow-light);
    color: #4a3ac9;
}