.registration_end{
    position: fixed; /* or fixed if you want it relative to the viewport */
    width: 100%;
    height: 100%;
    z-index: 9999; /* Ensure it's above everything else */
    background-color: rgba(0, 0, 0, 0.5); /* Optional: for an overlay effect */
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.registration_notyet{
    position: fixed; /* or fixed if you want it relative to the viewport */
    width: 100%;
    height: 100%;
    z-index: 9999; /* Ensure it's above everything else */
    background-color: rgba(0, 0, 0, 0.5); /* Optional: for an overlay effect */
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.registration_end1{
    width: 50%;
    height: 30%;
    border-radius: 15px;
    border: solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    background-color:#042d6260 ;
}
.registration_notyet1{
    width: 50%;
    height: 30%;
    border-radius: 15px;
    border: solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    background-color:#042d6260 ;
}
.registration_end1 p{
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin-right: 15px;
    margin-left: 15px;
    
}
.registration_notyet1 p{
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin-right: 15px;
    margin-left: 15px;
    
}
.image_close{
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px; 
    transition: 0.5s ease-in-out;
}
.image_close{
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px; 
    transition: 0.5s ease-in-out;
}
.image_close img{
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px; 
    transition: 0.5s ease-in-out;
}
.registration_end1 img:hover{
    transform: rotate(90deg) scale(1.1);
}
.registration_notyet1 img:hover{
    transform: rotate(90deg) scale(1.1);
}
@media (max-width:800px){
    .registration_end1{
        width: 80%;

    }
    .registration_notyet1{
        width: 80%;

    }
}
@media (max-width: 500px){
    .registration_end1 p{
        font-size: 1.3rem;
    }
    .registration_notyet1 p{
        font-size: 1.3rem;
    }
    .registration_notyet1{
        height: 25%;
    }
    .registration_end1{
        height: 25%;
    }
}
@media (max-width:400px){
    .registration_end1 p{
        font-size: 1rem;
    }
    .registration_notyet1 p{
        font-size: 1rem;
    }
    .registration_notyet1{
        height: 25%;
    }
    .registration_end1{
        height: 25%;
    }
}