.modal{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000000;
}

.modal::after{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.modal form{
    background-color: var(--secondary-clr);
    padding: 2em 1.5em;
    border-radius: 15px;
    box-shadow: 0 0 3em rgba(0, 0, 0, 0.4);
}

.modal form hr{
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin: 1em 0;
}


.modal form .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
    color: white;
}

.modal form .header .close{
    cursor: pointer;
}

.modal form .container{
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 1em;
}


.modal form .footer{
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal form .footer a{
    text-decoration: none;
    color: white;
}

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}