@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url(/Common.Web/Content/fonts/Roboto-400-italic.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    src: url(/Common.Web/Content/fonts/Roboto-700-italic.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url(/Common.Web/Content/fonts/Roboto-400-normal.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url(/Common.Web/Content/fonts/Roboto-700-normal.woff2) format('woff2');
}

* {
    box-sizing: border-box;
}

body, html {
    height: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    background: #F3F6FA;
    position: relative;
    color: #3A3A3A;
}

h1 {
    margin: 2em;
    font-weight: normal;
}

.clear {
    clear: both;
}

.main-positioner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.floating-logo {
    padding: 40px;
}

.floating-logo > .logo {
    background: url(/Common.Web/Content/images/kaizen-logo.png) no-repeat;
    background-size: contain;
    display: block;
    height: 40px;
}

.copyright {
    position: fixed;
    text-align: center;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    opacity: 0.5;
}

.version {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    opacity: 0.5;
}

#quote-wrapper {
    min-height: 154px;
    position: absolute;
    bottom: 60px;
    right: 60px;
    max-width: 270px;
}

#quote-wrapper > .quote {
    padding-left: 16px;
    padding-top: 8px;
    font-size: 15px;
}

#quote-wrapper:before {
    font-size: 140px;
    content: "\201C";
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: -30px;
}

#quote-wrapper > .quote > .author {
    margin-top: 10px;
    font-size: 13px;
}

.main-login {
    background-color: #42617D;
    color: white;
    width: 350px;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
}

.message-container {
    color: rgba(255, 255, 255, 0.6);
}

.message-container span {
    margin-top: 25px;
    display: block;
}

.main-login .top {
    text-align: center;
    padding: 20px;
}

.main-login .top h1 {
    color: white;
    font-size: 18px;
}

.main-login .top p {
    color: white;
    font-size: 16px;
}

.main-login .top input[type="text"], .main-login .top input[type="password"] {
    font-family: "Roboto", sans-serif;
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: black;
    border-radius: 3px;
    font-size: 14px;
    padding: 8px 12px;
    width: 100%;
    margin: 5px 0;
}

.main-login .top input:focus {
    outline: none !important;
    border: 1px solid rgba(255, 255, 255, 1);
}

.main-login .top .avatar {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-color: #CDE5FC;
    border-radius: 100%;
    background-image: url('/Common.Web/Content/images/user_icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.main-login .top .links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin: 30px 0;
}

.main-login .top .links a.forgot {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-decoration: none;
    width: 50%;
    text-align: left;
    transition: 0.1s ease all;
}

.main-login .top .links a.forgot:hover {
    color: rgba(255, 255, 255, 0.8);
}

.main-login .top .links .button {
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 10px 20px;
    width: 50%;
    background: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: 0.4s ease all;
}

.main-login .top .links .button :hover {
    border: 1px solid rgba(255, 255, 255, 1);
}

.main-login .bottom {
    padding: 0 20px 20px;
}

.main-login .button {
    font-family: "Roboto", sans-serif;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#10b8f3+1,06a8d9+100 */
    /* Old browsers */
    background: #10b8f3;
    /* FF3.6-15 */
    background: -moz-linear-gradient(top, #10b8f3 1%, #06a8d9 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-linear-gradient(top, #10b8f3 1%, #06a8d9 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background: linear-gradient(to bottom, #10b8f3 1%, #06a8d9 100%);
    /* IE6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#10b8f3', endColorstr='#06a8d9', GradientType=0);
    width: 100%;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    display: block;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
}

.main-login .button i.icon {
    background-image: url('/Common.Web/Content/images/password_icon.png');
    width: 13px;
    height: 13px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
}

.main-login #login-form {
    /*hidden by default*/
    display: none;
}

.error-wrapper {
    color: #f5a623;
}

#show-login-form {
    display: none;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 10px;
}

#show-login-form:hover {
    background: rgba(255, 255, 255, 0.1);
}

#not-chrome-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(80, 93, 109, 0.9);
    text-align: center;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

#not-chrome-blocker .message {
    position: absolute;
    top: 50%;
    margin-top: -100px;
    width: 100%;
    padding: 0 10px;
    color: #fff;
}

#not-chrome-blocker .dismiss {
    margin-top: 24px;
    font-size: 11px;
    text-decoration: underline;
    cursor: pointer;
    color: rgba(10, 24, 46, 1);
}

#not-chrome-blocker .dismiss:hover {
    text-decoration: none;
}