body {
    margin: 0;
    padding: 0;
    font-size: var(--fs-xl);
}

form {
    border-radius: 0;
    border: 0;
    display: flex;
    outline: 0;
}

.login-page {
    width: 100%;
    height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
}

.left-login {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    /* background-color: #f6f6f6; */
    /* margin: 0; */
    /* padding: 0; */
}

.login-contents {
    padding: 0;
    width: 56%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* background-color: #555555; */
}

.login-texts {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.login-title {
    color: black;
    font-family: "Poppins-ExtraBold";
    font-size: var(--fs-3-3xl);
}

.welcome {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: var(--fs-ms);
}

.login-field-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.login-two-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-field {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0 0 0 4.5%;
    background-color: #f6f6f6;
    border: 0.5px solid #aaaaaa49;
    border-radius: 8px;
}

.sectiontowrite {
    height: 44px;
    width: 100%;
    font-size: var(--fs-ms);
    font-family: "Poppins-SemiBold";
    color: black;
    border: none;
    background: transparent;
    outline: none;
}

.field-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--fs-ms);
}

.remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    appearance: none;
    border: 1px solid #aaaaaa;
    border-radius: 3px;
    background-color: white;
    position: relative;
}

.remember input[type="checkbox"]:checked {
    background-color: black;
    border-color: black;
}

.remember input[type="checkbox"]:checked:after {
    content: '\2713';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.login-button {
    width: 100%;
    margin-top: 10px;
    border: none;
    background-color: black;
    color: white;
    font-family: "Poppins-SemiBold";
    padding: 3.2% 0;
    border-radius: 8px;
    transition: all 0.1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--fs-ms);
}

.login-button:hover {
    transform: scale(1.04);
    cursor: pointer;
}

.action-separation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.action-separation div {
    padding: 0 4%;
    white-space: nowrap;
    font-size: var(--fs-ms);
}

.action-separation .line {
    height: 1px;
    width: 100%;
    background-color: #555555;
    opacity: 0.5;
}

.login-other-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.1s ease-in-out;
    width: 100%;
}

.login-field:focus-within {
    outline: 2px solid lightskyblue;
}

.right-login {
    width: 54%;
    height: 100%;
    position: relative;
    display: grid;
    place-items: center;
}

.right-login .background {
    object-fit: cover;
    height: 96%;
    width: 96%;
    border-radius: 34px;
    position: absolute;
    z-index: 1;
}

.right-login .glassmorphic-item {
    z-index: 2;
    width: 84%;
    height: 84%;
    border-radius: 16px;
    border: 1px solid #dddddd7e;
    background-color: #d9d9d91c;
    backdrop-filter: blur(6px);
}

.nsl-container-buttons {
    width: 100%;
    padding: 0;
    margin: 0;
}

.nsl-container-buttons a,
.nsl-container-buttons a .nsl-button,
.nsl-container-buttons a .nsl-button-default,
.nsl-container-buttons a .nsl-button-google {
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    padding: 12px 0;
    text-decoration: none;
    font-family: "Poppins-SemiBold";
    font-size: var(--fs-ms);
    color: black;
    transition: all 0.1s ease-in-out;
}

.nsl-container-buttons a .nsl-button-google:hover {
    transform: scale(1.04);
    cursor: pointer;
}

.nsl-container-buttons a .nsl-button-svg-container {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.nsl-container-buttons a .nsl-button-label-container {
    display: flex;
    align-items: center;
}

.wpa-login-form,
.wpa-login-form * {
    all: unset;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.wpa-login-form {
    display: block;
    width: 100%;
}

.wpa-login-form .login-field-list,
.wpa-login-form .login-field,
.wpa-login-form .sectiontowrite,
.wpa-login-form .login-button {
    all: unset;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    display: revert;
}

.wpa-login-form .login-field {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0 0 0 4.5%;
    background-color: #f6f6f6;
    border: 0.5px solid #aaaaaa49;
    border-radius: 8px;
}

.wpa-login-form .sectiontowrite {
    height: 44px;
    width: 100%;
    font-size: var(--fs-ms);
    font-family: "Poppins-SemiBold";
    color: black;
    border: none;
    background: transparent;
    outline: none;
}

.wpa-login-form .login-button {
    width: 100%;
    margin-top: 10px;
    border: none;
    background-color: black;
    color: white;
    font-family: "Poppins-SemiBold";
    padding: 3.2% 0;
    border-radius: 8px;
    transition: all 0.1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--fs-ms);
}

.wpa-login-form .login-button:hover {
    transform: scale(1.04);
    cursor: pointer;
}

.login-field input[type="password"] {
    padding-right: 36px;
}

#togglePassword {
    cursor: pointer;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .login-page {
        flex-direction: column !important;
        height: auto !important;
        min-height: 100vh !important;
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;

        .logo-main {
            width: 232px;
        }
    }

    .nsl-button-svg-container {

        svg {
            width: 48px !important;
            height: 48px !important;
            margin-left: 220px;
            margin-right: -220px;
        }
    }

    .nsl-button-label-container {
        font-size: 32px !important;
        display: none;
        width: fit-content !important;
        width: 12px;
    }

    .left-login {
        width: 100% !important;
        height: auto !important;
        min-height: 100vh !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .login-contents {
        /* width: 98% !important; */
        /* max-width: 600px !important; */
        margin: 24px 0 !important;
        padding: 0 28px !important;
        font-size: 38px;
        width: 100% !important;

        .login-field {
            height: 100px !important;
            /* background-color: #d6c2c2; */
            font-size: 32px !important;
            gap: 16px !important;

            img {
                width: 36px;
                height: 36px;
            }
        }

        #rememberme {
            width: 32px;
            height: 32px;
        }

        .login-title {
            font-size: 48px;
        }
    }

    .right-login {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .login-page {
        flex-direction: column !important;
        height: auto !important;
        min-height: 100vh !important;
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .left-login {
        width: 100% !important;
        height: auto !important;
        min-height: 100vh !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .login-contents {
        /* width: 98% !important; */
        max-width: 500px !important;
        margin: 12px 0 !important;
        padding: 0 8px !important;
    }

    .right-login {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .login-page {
        flex-direction: column !important;
        height: auto !important;
        min-height: 100vh !important;
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .left-login {
        width: 100% !important;
        height: auto !important;
        min-height: 100vh !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        font-size: 24px !important;
    }

    .login-contents {
        /* width: 98% !important; */
        max-width: 400px !important;
        margin: 8px 0 !important;
        padding: 0 8px !important;
    }

    .right-login {
        display: none !important;
    }
}