body {
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

#auth {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background Image with Blur */
#auth::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: url(../../images/bg/auth-bg-2.jpg) no-repeat center center fixed;
    background-size: cover;
    filter: blur(3px);
    z-index: 0;
}

/* Dark Overlay */
#auth::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

#auth-left {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    /* 70% opacity */
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(10px);
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo img {
    height: 80px;
}

.auth-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #25396f;
    font-weight: 800;
}

.auth-subtitle {
    font-size: 1.1rem;
    color: #435ebe;
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-control-icon i {
    font-size: 1.2rem;
}

/* Register Page Specific Styles */
#auth.register-page::before {
    filter: none;
}

#auth.register-page::after {
    background: rgba(0, 0, 0, 0.2);
}