.auth-style .bg-container {
    position: relative;
    background-image: url("/assets/images/login-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

@media screen and (max-width: 480px) {
    .auth-style .bg-container {
        height: auto;
    }

    .auth-style .bg-container .center-content {
        padding: 3rem 0.5rem;
    }
}

@media screen and (max-width: 480px) and (min-height: 650px) {
    .auth-style .bg-container {
        height: 100vh;
    }

    .auth-style .bg-container .center-content {
        padding: 3rem 0.5rem;
    }
}

.auth-style .bg-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1f202382;
    z-index: 0;
}

.auth-style .bg-container .center-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.auth-style .bg-container .center-content .form-container {
    /* background-color: rgba(255, 255, 255, 1); */
    background-color: #000000b3;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30rem;
}

.auth-style .bg-container .center-content .form-container .login-input {
    padding: 1rem;
}

.auth-style .bg-container .center-content .form-container .login-input:focus {
    border: none;
    box-shadow: none;
}

.auth-style .bg-container .center-content .form-container .remember-check-box {
    display: inline-flex;
}

.auth-style
    .bg-container
    .center-content
    .form-container
    .remember-check-box
    label {
    margin-bottom: 0;
}

.auth-style
    .bg-container
    .center-content
    .form-container
    .remember-check-box
    input[type="checkbox"] {
    margin-top: 3px;
    margin-right: 5px;
}

.auth-style .bg-container .center-content .form-container .custom-label {
    font-weight: 300;
    color: white;
}

/* register */

.auth-style .bg-container-register {
    height: auto;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
    .auth-style .bg-container-register {
        height: 100vh;
    }
}

@media (orientation: landscape) and (min-width: 600px) and (max-width: 1024px) {
    .auth-style .bg-container-register {
        height: auto;
    }
}
