﻿
* { margin: 0; padding: 0; }

html {
	height: 100%;
}

body{
	display: flex;
	height: 100%;
	color: #272d37;
	background: #324358;
	font-family: 'Lato', sans-serif;
}

.f-col { 
	display: flex; 
	flex-direction: column; 
}

.f-row { 
	display: flex; 
	flex-direction: row; 
	align-items: center;
}

.f-spacer {
	flex-grow: 1;
}

.marginx16 {
	margin: 16px 0;
}

.logo-position {
	margin: 24px 8px;
}

.small-text-line {
	font-size: 14px;
	line-height: 18px;
}

.xsmall-text-line {
	font-size: 12px;
	line-height: 14px;
}

.text-field {
	text-align: center;
}

.mandtory {
	color: #d81e22;
}

.error-state {
	color: #d81e22;
	padding-top: 8px;
}

.success {
	color: #40C057;
}

.info-link {
	color: #0078D4;
	text-decoration: none;
}

.mdo-signin-logout {
	display: flex;
	flex-direction: row;
    padding: 4vh 0;
	width: 80%; 
	border-radius: 12px;
	height: 92vh;
	margin: 0 auto;
}

.mdo-signin-col {
	display: flex;
	flex: 1;
	background: #FFFFFF; 
	border-radius: 12px 0 0 12px;
	height: 100%;
	padding: 0;
}

.signin-col-listing {
	align-items: center;
	margin: 0 auto;
	width: 100%;
	max-height: calc(100% - 156px - 106px);
	overflow: auto;
}

.action-col-listing {
	width: 90%;
    margin: 0 auto;
}

.fields-container {
	width: 90%;
}

.logo-s {
	height: 60px;
}

.signin-heading {
	font-weight: 500;
	text-align: center;
}

.mdo-field {
	width: 100%;
	margin: 6px 0; 
	position: relative;
}

.mdo-label {
	font-size: 11.2px;
	margin-bottom: 6px;
	font-weight: bold; 
}

.mdo-form-field {
	border: 1px solid #D9E3EF;
	height: 36px;
	background: #F8FBFD;
	padding: 0 36px 0 4px;
    font-size: 15px;
    outline: none;
    border-radius: 4px;
    font-family: 'Lato';
	color: #646F79;
}

.mdo-form-field.disabled {
	background: #ECECEC;
	border-color: #ECECEC;
}

.mdo-mandtory-field .mdo-form-field {
	border: 1px solid #d81e22;
	color: #d81e22;
}

.mdo-mandtory-field .mdo-label {
	color: #d81e22;
}

.signin-button {
	background: #4A5B75;
	color: #FFFFFF;
	font-size: 14px;
	border-radius: 4px;
    width: 100%;
    height: 38px;
    box-shadow: none;
    cursor: pointer;
    border: none;
    font-family: 'Lato';
	margin: 0 0 16px;
	justify-content: center;
}

.mdo-graphic-col {
	background: #F0F7FD;
	display: flex;
	flex: 1;
	border-radius: 0 12px 12px 0;
	height: 100%;
	padding: 0 24px;
	align-items: center;
	text-align: center;
	position: relative;
}

.graphics {
	height: 70%;
	display: flex;
	align-items: center;
	margin: 48px 0;
}

.svg-graphic {
	width: 100%;
	height: 100%;
}

.shared-info {
	color: #363636;
	padding: 24px 24px;
	position: absolute;
	bottom: 32px;
}

.chips-list {
	flex-wrap: wrap;
}

.mdo-chip {
	border: 1px solid #D9E3EF;
	padding: 6px;
	border-radius: 30px;
	font-size: 12px;
    margin-right: 6px;
	margin-bottom: 6px;
	cursor: pointer;
}

.mdo-chip.Selected {
	background: #EFF4F7;
}

.signup-field {
	padding: 0 5%;
}

.checkbox-custom {
    opacity: 0;
    position: absolute;   
}

.checkbox-custom, .checkbox-custom-label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.checkbox-custom-label {
    position: relative;
}

.checkbox-custom + .checkbox-custom-label:before{
    content: '';
    background: #fff;
    border: 1px solid #D9E3EF;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 4px;
    margin-right: 10px;
    text-align: center;
	border-radius: 3px;
}

.checkbox-custom:checked + .checkbox-custom-label:before {
    background: #4A5B75;
    box-shadow: inset 0px 0px 0px 5px #fff;
}

.field-sign {
	position: absolute;
	top: 31px;
	right: 8px;
	height: 16px;
	cursor: pointer;
}

.verify-sign {
	font-size: 160px;
}


.sippner {
	width: 12px;
	height: 12px;
	margin-right: 6px;
}

.after-none:after{ 
	display: none !important;
}


.sippner-running-circle {
	border: 2px rgba(255, 255, 255, 0.1) solid;
	border-top: 2px #FFFFFF solid;
	border-radius: 50%;
	-webkit-animation: spCircRot 0.6s infinite linear;
	animation: spCircRot 0.6s infinite linear;
}

.language-selection {

    display: inline-block;

    position: relative;

    padding: 0 12px;

    overflow: hidden;

    background: transparent;

    text-shadow: none;

  }

.logintop-section {
	padding: 24px;
}


  .language-selection select {

    border: none;

    outline: none;

    font-size: 14px;

    color: #313131;

    background: transparent;

    cursor: pointer;

  }

@-webkit-keyframes spCircRot {
	from { -webkit-transform: rotate(0deg); }
	to { -webkit-transform: rotate(359deg); }
}

@keyframes spCircRot {
	from { transform: rotate(0deg); }
	to { transform: rotate(359deg); }
}

@media only screen and (max-width: 900px) {
	.mdo-graphic-col {
	  display: none;
	}

	.mdo-signin-col {
		border-radius: 12px;
	}
}