.logintext {
    color: #444444;
}

.eventcreatetext {
    color : #4A5570
}

/* styles for create page radio button */
.custom-radio {
    width: 20px;
    height: 20px;
}

.me-3 {
    margin-right: 15px;
}

.d-flex.align-items-center {
    line-height: 1.5;
}

.form-selectgroup-title {
    vertical-align: middle;
}

.group-item-radio {
 padding: 30px;
}

/* Page loader */
/* Blur the page content when the loader is active */
.blurred-background {
    filter: blur(50px); /* Increase the blur to ensure no content is visible */
    background-color: rgba(255, 255, 255, 1); /* Pure white background */
    pointer-events: none; /* Disable interaction with the content */
    position: absolute; /* Position absolutely to cover the entire container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998; /* Ensure it's behind the loader but above the content */
}

/* Fullscreen loader container */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    z-index: 9999; /* Ensure it’s on top of everything */
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden; /* Hide by default */
}

/* Show loader when active */
body.loader-active .loader-container {
    visibility: visible;
}
/* Page loader */
.form-control {
    box-shadow: none !important;
    outline: none !important;
}
