html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.page-wrapper {
    min-height: 100%;
    min-width: 100%;
    display: flex;
    flex-direction: row;
}

.container {
    width: 50%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container.left {
    background-color: #fff;
    position: relative;
}

.container.right {
    background-color: #008545;
}

.crt-logo {
    width: auto;
    height: auto;
    position: relative;
}

.crt-logo:before {
    position: absolute;
    top: 50%;
    height: 50%;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(5px);
    content: '';
}

.mobile-icon-top-container {
    display: none;
}

.icon-top-container {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 24px;
    left: 24px;
}

.icon-top {
    height: 100%;
    width: auto;
}

.icon-text {
    font-size: 2rem;
    font-weight: 600;
    padding-left: 6px;
    font-style: italic;
}

.login-container {
    width: 75%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.login-title {
    color: #232834;
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.login-subtitle {
    color: #c1c1c1;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.form-input-container {
    width: 90%;
}

.password-details-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.password-details {
    color: #c1c1c1;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.password-details>input[type="checkbox"] {
    margin-right: 8px;
    height: 16px;
    width: 16px;
}

.password-details>a {
    color: #1A73E8;
    text-decoration: none;
}

.password-details>label {
    margin: 0;
}

.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 42px;
    background-color: #008545;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    margin-top: 24px;
    transition: all 0.2s ease-in-out;
}

.login-button.saml {
    background-color: #fff;
    border: 1px solid #c1c1c1;
    padding: 0px !important;
}

.login-button.saml > a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #232834;
}

.saml-icon {
    height: 75%;
    width: auto;
    margin-right: 8px;
    color: #008545;
}

.login-button:hover {
    filter: brightness(90%);
}

.login-button:active {
    filter: brightness(90%);
}

.login-button:focus {
    outline: none;
}

.login-error {
    color: #d93025 !important;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    width: 90%;
}

.login-details {
    width: 90%;
    color: #878787;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.login-details a {
    color: #1A73E8;
    text-decoration: none;
    margin-left: 8px;
}

@media screen and (max-width: 768px) {
    .container.right {
        display: none;
    }

    .container.left {
        width: 100%;
    }

    .icon-top-container {
        display: none;
    }

    .mobile-icon-top-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        margin-top: 24px;
    }

    .mobile-crt-logo {
        height: 100%;
        width: auto;
    }

    .login-container {
        height: auto;
        flex: 1;
        width: 100%;
        align-items: center;
        padding-top: 24px;
        justify-content: flex-start;
    }

    .login-title {
        width: 90%;
    }

    .login-subtitle {
        width: 90%;
    }
}

@media (prefers-color-scheme: dark) {

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0 30px #1E1E1E inset !important;
        -webkit-text-fill-color: #e6e6e6 !important;
    }

    input:autofill {
        color: #e6e6e6 !important;
    }

    .container.left {
        background-color: #1E1E1E;
    }

    .container.right {
        background-color: #285d43;
    }

    .login-button {
        background-color: #285d43;
    }

    .saml-icon {
        color: #285d43;
    }

    .login-title {
        color: #e6e6e6;
    }

    .login-subtitle {
        color: #8B8B8B;
    }

    .password-details {
        color: #8B8B8B;
    }

    .login-details {
        color: #8B8B8B;
    }

    .icon-text {
        color: #e6e6e6;
    }
}