body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column; /* Arrange items in a column */
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    color: #333;
}

p {
    margin-bottom: 20px; /* Space between text and loader */
}
.preparing-experience{
	
	position: absolute;
	left: 0px; 
	top: 0px; 
	bottom: 0px; 
	width: 40%; 
	background: rgb(97, 164, 246); 	
	animation: cubic-bezier 2s infinite;
}

#loading-logo{
	
	font-family:Arial;
	font-size:12px;
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#FFF;
	z-index:999999;
}
.loading-container {
    width: 80%;
    height: 4px;
    background-color: #e0e0e0;
    overflow: hidden;
    position: relative;
}

.loading-line {
    width: 100%;
    height: 100%;
    background-color: #007bff;
    position: absolute;
    left: -100%;
    animation: loadingAnimation 2s infinite;
}

.verification-container {
    border: 1px solid #ddd;
    padding: 12px 20px;
    width: 300px;
    background: #fff;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

input[type="checkbox"] {
    position: relative;
    margin: 0;
    width: 16px;
    height: 16px;
}

.spinner-container {
    position: relative;
    width: 16px;
    height: 16px;
}

.spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #4CAF50;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
    margin: 0;
    animation: spin 1s linear infinite;
}

.checkbox-label {
	font-size: 13px;
    color: #000;
}

.cloudflare-logo {
    float: right;
    width: 3rem;
    margin-bottom: -15px;
}

.cloudflare-text {
    font-size: 1rem;
}

.footer-container {
    display: block;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    padding-bottom: 10px;
}

.footer-content {
    display: block;
    justify-content: space-between;
    align-items: center;
}

 

.footer {
    text-align: right;
    font-size: 11px;
    color: #737373;
    margin-top: -15px;
}

.footer a {
    color: #737373;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.divider {
    margin: 0 4px;
}

.loader {
    display: none;
    margin-top: 12px;
    font-size: 13px;
    color: #2563eb;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
    }

/* Hide checkbox when spinner is visible */
.checkbox-wrapper.loading input[type="checkbox"] {
     opacity: 0;
}

@keyframes loadingAnimation {
    0% {
        left: -100%;
    }
    50% {
        left: 0%;
    }
    100% {
        left: 100%;
    }
}
@keyframes cubic-bezier {
    0% {
        left: 0%;
    }
    25% {
       left: 15%;
    }
    50% {
        left: 30%;
    }
	75% {
        left: 45%;
    }
	100% {
        left: 60%;
    }
}