/* 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: #51A620;
    text-decoration: none;
}

a.blue_link {
    color: #1A1DFF;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    background-color: #0C2656;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: 200% 200%;
}

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

#main_login {
    background-color: #fff;
    width: 340px;
    border-radius: 20px;
    padding: 50px 50px 35px;
    margin: 14px 0;
    flex-shrink: 0;
    flex-basis: auto;
}

.logo {
	width: 50%;
    margin-bottom: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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: #017036;
    border: none;
    color: #fff;
    padding: 13px 0;
    border-radius: 12px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    width: 47%;
}

.full_width {
    width: 100%;
}

.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;
}

.azure_active_directory_login_button {
    width: 100%;
    background: #0078d4 url("../images/AzureLogin.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;
}

.error_page_text {
    font-family: 'Open Sans', sans-serif;
    color: #3A3C5A;
    padding-bottom: 15px;
    line-height: 22px;
}

.forgot_image {
    width: 18px;
    height: 18px;
    padding-right: 5px;
}
.support_text {
    color: #0C2656;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-left: 20px;
}


.support_button {
    border: 2px solid #0C2656;
    border-radius: 12px;
    padding: 12px 33px
}

.center_text {
    text-align: center;
}

.right_text {

}

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

.margin_bottom_20 {
    margin-bottom: 20px;
}

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

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

