/* body{background-color:#fff}#auth{height:100vh;overflow-x:hidden}#auth #auth-right{height:100%;background:url(../../images/bg/4853433.jpg),linear-gradient(90deg,#2d499d,#3f5491)}#auth #auth-left{padding:3rem 5rem}#auth #auth-left .auth-title{font-size:3rem;margin-bottom:1rem;text-align:center;}#auth #auth-left .auth-subtitle{font-size:1.3rem;line-height:2rem;color:#a8aebb;text-align: center;}#auth #auth-left .auth-logo{margin-bottom:7rem}#auth #auth-left .auth-logo img{height:2rem}@media screen and (max-width:767px){#auth #auth-left{padding:5rem}} */

body {
    background-color: #fff;
}

#auth {
    height: 100vh;
    overflow-x: hidden;
    background-image: url(../../images/logo/logo.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay untuk meningkatkan kontras */
#auth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

#auth .row {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
}

#auth #auth-left {
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 420px;
    margin: 0 auto;
}

#auth #auth-left .auth-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #2d499d;
}

#auth #auth-left .auth-subtitle {
    font-size: 1.1rem;
    line-height: 1.6rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 2rem;
}

#auth #auth-left .auth-logo {
    margin-bottom: 7rem;
}

#auth #auth-left .auth-logo img {
    height: 2rem;
}

/* Atur form agar berada di tengah */
#auth .col-lg-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 100%;
}

#auth .col-lg-7 {
    display: none;
}

#auth .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    #auth #auth-left {
        padding: 2rem 1.5rem;
        margin: 1rem;
        background: rgba(255, 255, 255, 0.98);
        max-width: 90%;
    }
    
    #auth #auth-left .auth-title {
        font-size: 2rem;
    }
    
    #auth #auth-left .auth-subtitle {
        font-size: 1rem;
    }
}