* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: "Poppins";
    background-color: #cccccc;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
    -webkit-text-fill-color: #1a263c;
}

.updated-login-wrapper {
    max-width: 1140px;
    width: 100%;
    margin: 80px auto;
    display: grid;
    background-color: #fffdfd;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
}

.updated-login-left-side {
    background-color: #004b63;
    border-radius: 16px 0px 0px 16px;
    padding: 20px 30px 0px 20px;
}

.updated-login-left-side h2 {
    font-family: "Poppins";
    font-size: 36px;
    font-weight: 700;
    line-height: 54px;
    color: #fff3f1;
    margin: 0px 0px 10px 0px;
}

.updated-login-left-side ul li {
    margin: 0px 0px 0px 30px;
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #fff3f1;
}

.updated-login-left-side .login-left-side-img {
    width: 100%;
    height: 470px;
    margin: 10px 0px 0px 0px;
}

.updated-login-left-side .login-left-side-img img {
    width: 100%;
    height: 100%;
}

.updated-login-right-side {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0px 20px 0px;
    border-radius: 0px 16px 16px 0px;
    background-color: #fffdfd;
}

.updated-login-right-side h3 {
    font-family: "Poppins";
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: #004b63;
    margin: 0px 0px 12px 0px;
}

.updated-login-right-side .password-text a {
    text-decoration: none;
}

.updated-login-right-side p {
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: #1a263c;
    margin-bottom: 5px;
}

.updated-login-right-side p a {
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    display: inline-block;
    margin: 0px 0px 0px 8px;
    color: #1a263c;
    text-decoration: underline;
}

.updated-login-right-side .switch-user-wrapper {
    border-bottom: 2px solid #d1d2d6;
    padding: 10px 0px;
    display: inline-block;
}

.updated-login-right-side .switch-user-wrapper a {
    text-decoration: none;
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #004b63;
}

.updated-login-right-side .switch-user-wrapper a:last-child {
    padding: 0px 25px;
    /* display: inline-block; */
}

.updated-login-right-side .switch-user-wrapper a.current-user {
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    border-bottom: 3px solid #004b63;
    padding-bottom: 10px;
}

.continue-email-button {
    background-color: #004b63;
    border-radius: 8px;

    margin: 15px 0px;
    color: #fff3f1;
}

.continue-email-button a {
    color: #fff3f1;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;

    text-decoration: none;
}

.continue-email-button a svg {
    margin: 0px 10px 0px 0px;
}

.or {
    text-align: center;

    font-family: "Poppins";
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: #1a263c;
}

.continue-button-wrapper {
    margin: 20px 0px;
}

.continue-button-wrapper a {
    border: 2px solid #e5e6ed;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;

    color: #1a263c;
}

@media only screen and (max-width: 991px) {
    .updated-login-wrapper {
        margin: 40px auto;
    }

    .updated-login-left-side h2 {
        font-size: 29px;
        line-height: 35px;
    }

    .updated-login-left-side ul li {
        margin: 0px 0px 0px 20px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {

    .updated-login-wrapper {
        grid-template-columns: 1fr;
        margin: 0px auto;
    }

    .updated-login-left-side {
        display: none;
    }
}