.wpcf7 form.new-form {
    max-width: 600px;
    margin: 0 auto;
}
 .new-form .cf7-floating {
     position: relative;
     margin-bottom: 20px;
}
.wpcf7 form.new-form>div {
    position:relative;
}
 .new-form input[type="text"], .new-form  input[type="email"], .new-form  input[type="tel"], .new-form textarea{
     width: 100%;
     padding: 12px 14px;
     font-size: 14px;
     border: 2px solid #ccc;
     border-radius: 15px;
     background: transparent;
     transition: border-color 0.2s ease;
}
 .new-form .cf7-floating input:focus, .new-form textarea:focus {
     border-color: #666;
     outline: none;
}
/* Floating label */
 .new-form .cf7-floating label {
     position: absolute;
     left: 14px;
     top: 50%;
     transform: translateY(-50%);
     font-size: 14px;
     color: #777;
     pointer-events: none;
     background: #F7F3F5;
     padding: 0 4px;
     transition: 0.2s ease all;
}
/* Active/focused/filled label */
 .new-form .cf7-floating input:focus ~ label, .new-form .cf7-floating input:not(:placeholder-shown) ~ label {
     top: 0;
     font-size: 12px;
     color: #333;
}

.wpcf7 form.new-form>p {
    position: relative;
}
.wpcf7 form.new-form>div[data-id]>p {
    position: relative;
}

.wpcf7 form.new-form>p label {
    position: absolute;
    top: 50%;
    font-size: 14px;
    left: 14px;
    color: #777;
    transform: translateY(-50%);
}

/* Select styling */
.new-form select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 2px solid #ccc;
    border-radius: 15px;
    background-color: transparent;
    color: #333;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23666" d="M6 8L0 0h12z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus state matches other inputs */
.new-form select:focus {
    border-color: #666;
    outline: none;
}

/* Floating label trigger */
.new-form .cf7-floating select:focus ~ label,
.new-form .cf7-floating select:not([value=""]) ~ label {
    top: 0;
    font-size: 12px;
    color: #333;
}




/* Placeholder option */
.new-form select option[value=""] {
    color: #999;
}
.wpcf7 form.new-form label.select-label {
    position: absolute;
    top: 0 !important;
    font-size: 12px !important;
    color: #333 !important;
    background-color: #F7F3F5;
    z-index: 1;
    padding: 4px;
    transform: translateY(-50%);
    left: 14px;
}

.new-form p.center-button input {
    display: block;
    margin: 25px auto 0 auto;
}
.new-form p.center-button span.wpcf7-spinner {
    position: absolute;
    bottom: 25%;
    right: 0;
}