/* Hide honeypot field */
.um-field-hp_field {
    display: none !important;
}

/* Hide time field */
.um-field-f_s_time {
    display: none !important;
}


    .ew-onboarding-wrapper {
        display: flex;
        justify-content: center;
        min-height: 80vh;
        padding: 20px;
        background: #f9f9f9;
		transition: height 0.3s ease;
    }
		
	.ew-onboarding-inner {
		max-width: 900px;
		width: 100%;
	}

    .ew-slide {
        display: none;
        max-width: 900px;
        width: 100%;
        background: #fff;
        padding: 40px;
        box-shadow: 0 0 20px rgba(0,0,0,0.2);
        border-radius: 8px;
        text-align: center;
        position: relative;
    }
    .ew-slide.active {
        display: block;
    }
    .ew-slide h2 {
        margin-top: 0;
    }
    .ew-slide p {
        margin-bottom: 20px;
    }
    .ew-slide-note {
        color: #253B7C;
        margin-top: 10px;
        
    }
    .ew-slide-actions {
        margin-top: 30px;
    }
    .ew-slide-actions button {
        margin: 5px;
        background: #AF1F24;
        color: #fff;
        border: none;
        padding: 12px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px; 
    }
    .ew-nav-buttons {
        margin-top: 40px;
        display: flex;
        justify-content: space-between;
    }
    .ew-nav-buttons button {
        background: #253B7C;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
    }
    .ew-slide-number {
        margin-top: 15px;
        font-size: 14px;
        color: #777;
    }
    .ew-slide-split {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .ew-slide-box {
        flex: 1;
        min-width: 250px;
        background: #fff;
        border: 1px solid #d4d4d4;
        border-radius: 6px;
        padding: 20px;
        text-align: center;
    }
    .ew-slide-box h3 {
        margin-top: 0;
        color: #253B7C;
        font-size: 20px;
        font-weight: bold;
    }
    .ew-slide-box p {
        font-size: 15px;
    }
    .ew-slide-box button {
        background: #AF1F24;
        margin-top: 10px;
    }
    .ew-benefits {
        color: #253B7C;
        font-weight: bold;
        margin-top: 20px;
    }
	    .ew-arrow {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        font-size: 40px;
        color: #253B7C;
        background: rgba(255,255,255,0.8);
        border-radius: 5%;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        cursor: pointer;
        z-index: 9999;
        user-select: none;
    }
    .ew-arrow-left {
        left: 10px;
    }
    .ew-arrow-right {
        right: 10px;
    }
	@media (min-width: 1025px) {
    .ew-arrow {
        display: none;
    }
	}
    .ew-skip-link {
        margin-top: 15px;
    }
    .ew-skip-link a {
        color: #999;
        font-size: 14px;
        text-decoration: underline;
        cursor: pointer;
    }
	.ew-slide-dots {
    margin-top: 20px;
    text-align: center;
	}

	.ew-slide-dots .dot {
		display: inline-block;
		width: 12px;
		height: 12px;
		margin: 0 5px;
		background-color: #ccc;
		border-radius: 50%;
		cursor: pointer;
		transition: background-color 0.3s;
	}

	.ew-slide-dots .dot.active {
		background-color: #253B7C;
	}

