
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75); 
    justify-content: center; 
    align-items: center;     
    z-index: 9999;
    pointer-events: none;
    
}
.modal-overlay.open {
    display: flex;
    pointer-events: auto;
}

.logincard {
    background-color: black;
    box-shadow: 0px 0px 12px 11px rgba(202, 7, 219, 0.37);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 90%; 
    max-width: 350px;
    padding: 30px;
    position: relative;
}

.loginimg {
    width: 50%;
}
.loginbtn {
    font-size: 1.7rem;
    color: rgb(197, 50, 173);
    font-family:'Russo One';
    background-color: transparent;
    border: none;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: absolute;
    top: 15px;         
    right: 15px;
}
.startform {
    display: flex;
    justify-content: center;
}


@media (max-width: 768px) {
    .logincard {
        width: 70%;
    }
    
}