.vmsf-form-wrapper {
    width: 100%;
}

.vmsf-form-group {
    position: relative;
    margin-bottom: 18px;
}

.vmsf-input {
    width: 100%;
    height: 48px !important;
    padding: 6px 15px !important;
    font-size: 14px;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.vmsf-input::placeholder {
    color: transparent !important;
}

.vmsf-input:focus {
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.vmsf-label {
    position: absolute;
    left: 15px;
    top: 14px;
    padding: 0 5px;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 400;
    pointer-events: none;
    transition: 0.2s ease all;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

/* Floating Label Logic */
.vmsf-input:focus~.vmsf-label,
.vmsf-input:not(:placeholder-shown)~.vmsf-label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: #3b82f6;
    font-weight: 500;
    background: #ffffff;
    border-radius: 4px;
}

.vmsf-asterisk {
    color: #ef4444;
    /* Red color for asterisk */
}

.vmsf-textarea {
    resize: vertical;
    min-height: 100px;
}

.vmsf-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background-color: #22a4df;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(34, 164, 223, 0.3);
}

.vmsf-submit-btn:hover {
    background-color: #0e4067;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 64, 103, 0.4);
}

.vmsf-submit-btn:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

#vmsf-form-message {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-align: center;
}

.vmsf-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.vmsf-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}