
 /* LOGIN PAGE */
.auth-page{
    background: linear-gradient(45deg, #4461ac 9%, #5b4f9c 31%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: 'Arial', sans-serif;
    margin: 0;
}


.login-box, .forgot-password-box {
    width: 600px;
    max-width: 600px;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

/* Positioning the glow-box to overlap the login-box */
.glow-box {
    display: inline-block;
    background-color: #fff;
    border-radius: 50%;
    padding: 0;
    box-shadow: 0 0 20px #7e4998;
    position: absolute;
    top: -60px; /* Moves it up, adjust this value based on your logo size */
    left: 50%;
    transform: translateX(-50%); /* Centers it horizontally */
}

/* Make the logo responsive */
.glow-box img {
    display: block;
    margin: 0 auto;
    width: 140px;
    height: auto;
}

/* Responsive adjustments */
/*@media (max-width: 768px) {
    .login-box {
        padding: 20px;
    }
    .glow-box {
        width: 70vw;
        max-width: 200px;
        top: -50px;
    }
}*/

/*@media (max-width: 576px) {
    .login-box {
        padding: 15px;
    }
    .glow-box {
        width: 80vw;
        max-width: 150px;
        top: -40px;
    }
}*/
/* Animation keyframes for fade-in and scaling effect */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.4);
    }
    100% {
        opacity: 1;
        transform: scale(0.6);
    }
}

.img-animation {
    animation: fadeInScale 1.5s ease-in-out;
    display: inline-block;
    transform: scale(0.6);
}

/*.img-animation:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}*/
/*.login-register-e {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    width: 100%;
    padding: 10% 0;
    position: relative;
}*/


.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
}

.line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}
.line::after {
    content: "";
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
    -webkit-animation: drop 7s 0s infinite;
    animation: drop 7s 0s infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.line:nth-child(1) {
    margin-left: -25%;
}
.line:nth-child(1)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.line:nth-child(3) {
    margin-left: 25%;
}
.line:nth-child(3)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

@-webkit-keyframes drop {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}

@keyframes drop {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}
 /* LOGIN End */
