#saswat-auto-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 999998;
}

#saswat-auto-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 420px;
    max-width: 92%;
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,.4);
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;
    z-index: 999999;
}

#saswat-auto-popup.show,
#saswat-auto-overlay.show {
    opacity: 1;
    visibility: visible;
}

#saswat-auto-popup.show {
    transform: translate(-50%, -50%);
}

#saswat-auto-close {
    position: absolute;
    right: 14px;
    top: 10px;
    border: none;
    background: none;
    font-size: 26px;
    cursor: pointer;
    color: #333;
}

#saswat-auto-popup h2 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 600;
    color: #111;
}

/* FORM WRAPPER */
#saswat-auto-form {
    margin-top: 18px;
}

/* INPUT BASE STYLE */
#saswat-auto-form input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    background: #fafafa;
    transition: all .25s ease;
    outline: none;
}

/* INPUT FOCUS */
#saswat-auto-form input:focus {
    border-color: #18425D;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(24,66,93,0.08);
}

/* PHONE FIELD CONTAINER */
.saswat-phone-field {
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    overflow: hidden;
    background: #fafafa;
    margin-bottom: 14px;
    transition: all .25s ease;
}

/* PHONE FIELD FOCUS */
.saswat-phone-field:focus-within {
    border-color: #18425D;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(24,66,93,0.08);
}

/* +91 PREFIX */
.saswat-phone-field span {
    padding: 14px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #f2f2f2;
    border-right: 1px solid #ddd;
}

/* PHONE INPUT */
.saswat-phone-field input {
    border: none !important;
    margin: 0 !important;
    background: transparent !important;
}

/* BUTTON */
#saswat-auto-form button {
    width: 100%;
    padding: 14px;
    background: #18425D;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .25s ease;
}

/* BUTTON HOVER */
#saswat-auto-form button:hover {
    background: #123246;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}