html {
    box-sizing: border-box;
}
:root {
    --primary-blue: #0436E6;
    --text-black: #000000;
    --bg-white: #FFFFFF;
}

.m18-modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(59, 100, 246, 0.7));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 9999;
}

.m18-popup {
    background-color: var(--bg-white);
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.m18-popup h4 {
    margin: 0;padding:0;
    font-size:1.2rem;;
    font-weight: 600;
    color: var(--text-black);
}

.m18-popup p {
    margin: 0;
    font-size:12px;
    font-weight: 400;
    color: var(--text-black);
}

.m18-zonaBtn{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m18-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    border: none;
    font-family: inherit;
}

.m18-btnPrimary {
    background-color: var(--primary-blue);
    color: #FFFFFF;
    font-weight: 600;
    padding: 13px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
    box-shadow: 0 4px 15px rgba(4, 54, 230, 0.3);
}


.m18-btnPrimary::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 8px;

    background: linear-gradient(
            -45deg,
            var(--primary-blue),
            #1a4ee8,
            var(--primary-blue),
            #032087
    );
    background-size: 300% 300%;
    animation: smoothGradient 3s ease infinite;

    z-index: -1;
}
.d-none { display: none; }

@keyframes smoothGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.m18-btnPrimary:hover {
    box-shadow: 0 8px 25px rgba(4, 54, 230, 0.55);
    transform: translateY(-2px);
}

.m18-btnSecondary {width:auto!important;margin:1rem auto 0 auto!important;
    display:inline-block;
    background-color: transparent;
    color: var(--primary-blue);
    font-weight: 400;
    font-size:12px;
    text-decoration: none;
}

.m18-btnSecondary:hover {
    color:#000000;
    text-decoration: none;
    cursor: pointer;
}
.m18-select {
    font-weight: 600;
    padding: 1rem;
    border: solid 1px rgb(215, 211, 250);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(4, 54, 230, 0.3);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}
.m18-messageError {
    color:#d70101!important;
}