body {
    background-color: #fff;
}

#auth {
    height: 100vh;
    overflow-x: hidden;
}

#auth #auth-right {
    height: 100%;
    background: url('../../img/iPad.png') no-repeat center, 
                linear-gradient(90deg, #2d499d, #3f5491);
    
    background-size: 100%, cover; 
}

#auth #auth-left {
    padding: 5rem 2rem;
}

#auth #auth-left .auth-title {
    font-size: 3rem;
}

#auth #auth-left .auth-subtitle {
    font-size: 1.7rem;
    line-height: 2.5rem;
    color: #a8aebb;
}

#auth #auth-left .auth-logo {
    margin-bottom: 1rem;
}

#auth #auth-left .auth-logo img {
    height: 2rem;
}

/* ซ่อนส่วนขวาในมือถือเพื่อไม่ให้การแสดงผลเพี้ยน */
@media screen and (max-width: 991px) {
    #auth-right {
        display: none;
    }
}