@import url("common.css");
@import url("environment.css");

html
{
	height: 100%;
	background: #F6F6F6;	
}

body.pure_login {
	margin: 0;
	padding: 0;
	height: 100%;
    background-size: cover;
    background-position: center center;
}

body.decisions-FINAL-blue-RGB {
    background-image: url("../../gfx/login/decisions-FINAL-blue-RGB.jpg");
}

div.pure_login_box {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
}

.pure_login_container {
    height: 100%;
    width: 100%;
    text-align: center;
    align-content: center;
}

form
{
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	width: auto;
    max-width: 470px;
    min-width: 200px;
}

div.pure_login_info {
	text-align: center;
	color: #636363;
	margin-top: 8px;
    margin-bottom: -16px;
	font-size: 14px;
}

div.pure_login_info a {
	text-decoration: underline;
	color: #ccc;	
}

div.pure_login_info a span {
	text-decoration: none;
	color: #636363;	
}

div.pure_login_info a:hover, div.pure_login_info a:hover span
{
	color: #00f;
}

label {
	color: #474f59;
	font-size: 14px;
	font-weight: normal;
    line-height: 28px;
}

div.message {
    color: #474f59;
    font-size: 14px;
    font-weight: normal;
    line-height: 28px;
}

div.login_container {
	margin-top: 18px;
	margin-bottom: 10px;
}

div.login_column_left {
    padding-left: 10px;
    text-align: left;
}

div.login_column_right {
    padding-right: 10px;
}

div.login_row {
    height: 28px;
    vertical-align: middle;
    margin-bottom: 18px;
}

div.login_row_display {
    display: inline-flex;
    width: 100%;
}

label.flex-1 {
    flex: 1;
}

div.flex-2 {
    flex: 2;
}

div.pure_box_content_message ul {
    padding-left: 0;
}

span.common_icon_13 {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 13px;
    margin-right: 4px;
}

span.info_text {
    vertical-align: middle;
}

/******************** Header ********************/

.pure_login_header {
	height: 74px;
	position: relative;
    border-radius: 6px 6px 0 0;
    background: #323232;
    color: #fff;
    display: flex;
    width: 100%;
    align-items: center;
}

.pure_login_header h2.pure_environment span {
    align-content: center;
    padding-top: unset;
}

.pure_login_header > * {
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    height: 100%;
}

.pure_login_logo {
    width: 113px;
    min-width: 113px;
    background: transparent url("../../gfx/pure_wordmark.png") center center no-repeat;
}

.pure_login_cust_name {
    font-size: 15px;
    padding: 0 30px 0 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline;
    align-content: center;
}

/** Improve accessibility when screen is small **/
@media screen and (max-width:250px){
    div.login_row_display {
        flex-direction: column;
    }

    label {
        line-height: 20px;
    }

    .pure_login_header h2.pure_environment span {
        margin-left: -20px;
    }

    .pure_login_logo {
        height: 45px;
        margin-left: -28px;
    }

    .logo_container {
        display: flex;
        flex-direction: column;
        padding-left: 30px;
    }
}