body {
    background-color: #fff;
}

#auth {
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}
#auth #auth-right {
	background: url(../../../assets/images/auth-img.png);
    background-repeat: no-repeat;
	height: 100%;
    background-position: center;
}
#nokey {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#auth .card {
    background: rgba(255, 255, 255, 0.4); /* Glass effect with 40% opacity */
    border-radius: 15px; /* Make corners rounded */
    backdrop-filter: blur(10px); /* Add blur effect for glass look */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
    height: auto; /* Adjust height as needed */
    margin: auto; /* Center card horizontally */
    position: absolute; /* Allow absolute positioning */
    left: 50%; /* Center on larger screens */
    transform: translate(-50%, -50%); /* Center vertically */
    top: 50%; /* Center vertically */
}

/* Media query for small devices */
@media (max-width: 576px) {
    #auth .card {
        background: rgba(255, 255, 255, 0.4); /* Glass effect with 40% opacity */
        border-radius: 15px; /* Make corners rounded */
        backdrop-filter: blur(10px); /* Add blur effect for glass look */
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
        height: auto; /* Adjust height as needed */
        margin: auto; /* Center card horizontally */
        position: absolute; /* Allow absolute positioning */
        width: 90%; /* Fill more width on small screens */
    }
}
#auth #auth-left {
    padding: 2rem;
    position: relative; 
    z-index: 1;
}

#auth #auth-left .auth-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#auth #auth-left .auth-subtitle {
    color: #a8aebb;
    font-size: 1rem;
    line-height: 2.5rem;
}

#auth #auth-left .auth-logo {
    place-self: anchor-center;
    margin-bottom: 3rem;
}

#auth #auth-left .auth-logo img {
    height: 3rem;
}
@media screen and (max-width: 992px) {
    #auth #auth-left {
        padding: 1rem 3rem;
    }
    #auth .card {
        width: 64%;
    }
    #auth #auth-left .auth-subtitle {
        line-height: 1rem;
    }
}
@media screen and (max-width: 767px) {
    #auth #auth-left {
        padding: 1rem 3rem;
    }
    #auth .card {
        width: 71%;
    }
    #auth #auth-left .auth-subtitle {
        line-height: 1rem;
    }
}

@media screen and (max-width: 576px) {
    #auth #auth-left {
        padding: 1rem;
    }
    #auth .card {
        width: 89%;
    }
    #auth #auth-left .auth-subtitle {
        line-height: 1rem;
    }
}

body.theme-dark #auth-right {
    background: url(../../../assets/images/auth-img.png), linear-gradient(90deg, #2d499d, #3f5491);
}
