body {
    background-color: #fff;
    min-height: 100vh;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#auth {
    width: 100%;
    max-width: 1200px;
    min-height: 90vh;
    display: flex;
    flex-direction: row;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}

.auth-logo img {
    height: 7rem;
}

.auth-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

#auth-left {
    max-width: 650px;
    width: 100%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1.8;
}

#auth-rightforgot {
    flex: 2.2;
    background: url('../../../image3/img2.jpg') no-repeat center center/cover;
}

#auth-rightlog {
    flex: 2.2;
    background: url('../../../image3/img1.jpg') no-repeat center center/cover;
}

#auth-rightreg {
    flex: 2.2;
    background: url('../../../image3/orp.jpg') no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
    #auth {
        flex-direction: column;
        height: auto;
    }

    #auth-rightforgot {
        height: 30vh;
    }

    #auth-rightlog {
        height: 30vh;
    }

    #auth-rightreg {
        height: 30vh;
    }

    #auth-left {
        padding: 2rem;
    }
}