   /*
 * Plugin Name:       Smart Discovery Form
 * Plugin URI:        https://maprank.agency/smart-discovery-form/
 * Description:       This plugin allows to collect leads, schedule calls, and capture newsletter signups with right from your WordPress dashboard.
 * Version:           1.1.3
 * Requires at least: 4.0
 * Requires PHP:      4.0
 * Author:            MapRank Agency
 * Author URI:        https://profiles.wordpress.org/maprank/
 * License:           GPL v2 or later
 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain:       smart-discovery-form
   */
.custom-consultation-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 16px;
    padding: 30px;
    max-width: 1000px;
    margin: 30px auto;
    gap: 20px;
}
.custom-consultation-form .form-col {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
}


.custom-consultation-form input,
.custom-consultation-form select,
.custom-consultation-form textarea {
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}
.custom-consultation-form input:focus,
.custom-consultation-form select:focus,
.custom-consultation-form textarea:focus {
    border-color: #0073e6;
    outline: none;
}
.custom-consultation-form input[type="submit"] {
    color: white;
    font-weight: bold;
    font-size: 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: auto;
}
.custom-consultation-form input[type="submit"]:hover {
    opacity: 0.95;
}

    .email-nl-wrapper {
        position: relative;
        max-width: 400px;
        margin: 30px auto;
    }
    .email-nl-wrapper input[type="email"] {
        width: 100%;
        padding: 15px 60px 15px 20px;
        font-size: 16px;
        border: 1px solid #ddd;
        border-radius: 40px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
        outline: none;
    }
    .email-nl-wrapper button {
        position: absolute;
        top: 39%;
        right: -5px;
        transform: translateY(-50%);
        height: 48px;
        width: 48px;
        border: none;
        background-color: #f0f0f0;
        color: white;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .email-nl-wrapper button:hover {
        background-color: #0f4dc7;
    }