/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/******************************** Emerald Style *****************************/

html, body {
    height: 100%;
}

a {
    color: #669a41;
    text-decoration: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    background-image:
            url("../images/PatternBackground.png"),
            url("../images/BackgroundGreen.svg");
    background-repeat: repeat, no-repeat;
    background-position: center center, right bottom;
    background-size: auto, auto 100%;
    background-attachment: fixed;
    background-color: #323236;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#wrapper {
	display: flex;
    align-items: center;
    flex-direction: column;
}

#main_login, #cta {
    margin: 14px 0;
}

#main_login {
    background-color: #fff;
    width: 340px;
    border-radius: 8px;
    padding: 60px 40px 46px;
    flex-shrink: 0;
    flex-basis: auto;
}

.logo {
	width: 100%;
    margin-bottom: 60px;
}

input {
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    width: 100%;
    padding: 11px 11px 11px 36px;
    margin-bottom: 23px;
    box-sizing: border-box;
    color: #323236;
    font-family: 'Open Sans', sans-serif;
}

.login_button {
    background-color: #669a41;
    border: none;
    color: #fff;
    padding: 14px 0;
    border-radius: 5px;
    font-family: 'Montserrat';
    cursor: pointer;
    width: 50%;
}

.openid_login_button {
    border: 2px solid #f5921f;
    border-radius: 5px;
    width: 100%;
    color: #323236;
    background: #f8f8f8 url("../images/OpenIDLogin.png") no-repeat 10px center;
}

.microsoft_login_button {
    width: 100%;
    background: #2f2f2f url("../images/MicrosoftLogin.png") no-repeat 10px center;
}

.google_login_button {
    width: 100%;
    background: #4285f4 url("../images/GoogleLogin.png") no-repeat 10px center;
}

.okta_login_button {
    width: 100%;
    background: #0081bd url("../images/OktaLogin.png") no-repeat 10px center;
}

.input_user {
    background: url("../images/user.svg");
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: 5px center;
}

.input_password {
    background: url("../images/password.svg");
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: 5px center;
}

.input_error {
    padding: 11px;
    font-size: 13px;
    border-radius: 5px;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    border: 1px solid transparent;
    margin-bottom: 23px;
    text-align: center;
}

.forgot_image {
    width: 18px;
    height: 18px;
    padding-right: 5px;
}

.support_text {
    color: #a7aebe;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    cursor: pointer;
    margin-left: 30px;
}

.center_text {
    text-align: center;
}

.right_text {

}

.login_title {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
    font-size: 25px;
    color: #669a41;
}

.margin_bottom_20 {
    margin-bottom: 20px;
}

.hint {
	font-size: 12px;
	color: grey;
	margin-bottom: 20px;
}

.text-emphasis {
	color: black;
	font-weight: bold;
}