@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

:root {
	--blue: #0433A1;
	--secondary: #0089FF;
	--white: #FFFFFF;
	--grey: #CCCCCC;
	--dark-grey: #999999;
	--danger: #F00000;
	--dark: #000000
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
	font-family: Raleway, sans-serif;
}

body {
	/*background: linear-gradient(90deg, var(--blue), var(--white));*/
	background-image: url("/assets/images/background_login.jpg");
	background-size: cover;
}

video {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	transform: translateX(-50%) translateY(-50%);
	background-size: cover;
	transition: 1s opacity;
}

.screen {		
	background: #FFFFFF;
	position: relative;	
	min-height: calc(100vh);
	width: 100%;
	box-shadow: 0px 0px 24px var(--dark);
}

.screen__content {
	z-index: 1;
	position: relative;	
	height: 100%;
}
.screen_text {
	margin: 50px 0 50px 0;
}
.login {
	/*padding: 156px 30px 30px 30px;*/
	padding: 70px 30px 30px 30px;

}

.login__field {
	padding: 20px 0px;	
	position: relative;	
}

.login__icon {
	position: absolute;
	top: 30px;
	color: var(--blue);
}

.login__input {
	border: none;
	border-bottom: 2px solid #D1D1D4;
	background: none;
	padding: 10px;
	padding-left: 24px;
	font-weight: 700;
	width: 75%;
	transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: var(--blue);
}

.login__submit {
	background: #fff;
	font-size: 14px;
	/*margin-top: 30px;*/
	margin-top: 60px;
	padding: 16px 20px;
	border-radius: 26px;
	border: 1px solid #D4D3E8;
	text-transform: uppercase;
	font-weight: 700;
	display: flex;
	align-items: center;
	width: 100%;
	color: var(--blue);
	box-shadow: 0px 2px 2px var(--secondary);
	cursor: pointer;
	transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	border-color: var(--blue);
	outline: none;
}

#loginbtn {width: 100%;}

.button__icon {
	font-size: 24px;
	margin-left: auto;
	color: var(--blue);
}

.social-login {
	position: absolute;
	height: 140px;
	width: 160px;
	text-align: center;
	bottom: 0px;
	right: 0px;
	color: #fff;
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-login__icon {
	padding: 20px 10px;
	color: #fff;
	text-decoration: none;	
	text-shadow: 0px 0px 8px var(--secondary);
}

.social-login__icon:hover {
	transform: scale(1.5);	
}

#nodeLogo {
	/*position: absolute;*/
	bottom: 50px;
	right: 0px;
}

.text-danger {
	color: var(--danger);
}

.powered-by-gs {
	width: 100%;
	text-align: right;
	/*position: absolute;*/
	bottom: 0px;
	padding: 10px;
}

.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.sbsa-text {
	font-size: 10px;
}