
body {
    margin: 0;
    padding: 0;
    background: white;
}

.font-base {
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.login-form-outer {
    background: #fff;
    border: 2px solid #e0dfe0;
    padding: 48px 38px;
}

    .login-form-outer input:not([type="checkbox"]) {
        border: 2px solid #e0dfe0;
        box-sizing: border-box;
        color: #4a4a4a;
        font-size: 16px;
        height: 44px;
        padding: 1px 2px;
        width: 100%;
    }

    .login-form-outer input:focus {
        outline: none !important;
    }

    .login-form-outer input[type=checkbox] {
        width: 20px;
        height: 20px;
        background-color: transparent;
        vertical-align: middle;
        position: relative;
        bottom: 1px;
        border: 2px solid #9a9a9a !important;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        .login-form-outer input[type=checkbox]:checked {
            border-color: #ccc !important;
            background: #9a9a9a !important;
        }

    .login-form-outer .login-checkbox label {
        padding-left: 6px;
        font-size: 14px;
        color: #4a4a4a;
    }

    .login-form-outer a {
        font-size: 14px;
        color: #4a4a4a;
        text-decoration: none;
    }

        .login-form-outer a:hover {
            text-decoration: underline;
            transition: all 0.3s ease-in-out;
        }

    .login-form-outer .login-button {
        color: #fff;
        background: #4aa9e0 !important;
        padding: 16px 55px 15px;
        border: none;
        font-size: 16px;
        margin-top: 44px;
        font-weight: 600;
        font-family: 'Roboto', sans-serif;
        cursor: pointer;
        -webkit-appearance: button;
        -moz-appearance: button;
    }

        .login-form-outer .login-button:hover {
            background: #469fd3;
        }

    .login-form-outer .login-button-inactive {
        color: #4a4a4a;
        background: #e0dfe0 !important;
        padding: 16px 55px 15px;
        border: none;
        font-size: 16px;
        margin-top: 44px;
        font-weight: 600;
        font-family: 'Roboto', sans-serif;
        cursor: wait !important;
        -webkit-appearance: button;
        -moz-appearance: button;
    }

    .login-form-outer .title {
        color: #4a4a4a;
        font-size: 24px;
        letter-spacing: -0.2px;
        font-weight: 600;
        font-family: 'Roboto', sans-serif;
    }

    .login-form-outer .subtitle-label {
        color: #4a4a4a;
        font-size: 16px;
        font-weight: 400;
        font-family: 'Roboto', sans-serif;
    }

