@font-face {
	font-family: 'SoberanaSans';
	src: url('../resources/fonts/soberanaSans/SoberanaSans-Regular.otf');
}

* {
	box-sizing: border-box;
	/* 	font-family: 'SoberanaSans'; */
}

body {
	font-size: 14px;
	background-color: #ECF0F1;
	padding: 50px;
}

.login {
	margin: 125px auto;
	width: 300px;
	box-shadow: 5px 5px 5px #AAAAAA;
	border-radius: 15px;
}

.login-screen {
	background-color: #FFF;
	padding: 20px;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	flex-flow: column;
	align-content: center;
}

.app-title {
	text-align: center;
	color: #777;
}

img {
	width: 100px;
}

.login-form {
	margin-top: 15px;
	text-align: center;
}

.login-form>input:focus {
	outline: none;
}

.control-group {
	margin-bottom: 10px;
}

input {
	text-align: center;
	background-color: #ECF0F1;
	border: 2px solid transparent;
	border-radius: 3px;
	font-size: 16px;
	font-weight: 200;
	padding: 10px 0;
	width: 250px;
	transition: border .5s;
	margin-bottom: 10px;
}

input:focus {
	border: 2px solid #3498DB;
	box-shadow: 1px 3px 3px #AAAAAA;
}

.btn {
	border: 2px solid transparent;
	background: #1E8EC2;
	color: #ffffff;
	font-size: 16px;
	line-height: 25px;
	padding: 10px 0;
	text-decoration: none;
	text-shadow: none;
	border-radius: 50px;
	box-shadow: none;
	transition: 0.25s;
	display: block;
	width: 250px;
	margin: 0 auto;
	margin-top: 5px;
}

.btn:hover {
	background-color: #FFAB02;
	box-shadow: 1px 3px 3px #AAAAAA;
}

.login-link {
	font-size: 12px;
	color: #ababab;
	text-decoration: none;
	margin-top: 15px;
	align-self: center;
}

.login-link:hover {
	color: #FFAB02;
}

select {
	appearance: none;
	/*   background-color: #AAAAAA; */
	border: none;
	border-bottom: solid 1px;
	padding: 10px;
	/*   margin: 0; */
	width: 100%;
	/*   cursor: inherit; */
	/*   line-height: 25px; */
	border-radius: 5px;
	background-image: linear-gradient(45deg, transparent 50%, gray 50%),
		linear-gradient(135deg, gray 50%, transparent 50%),
		linear-gradient(to right, #ccc, #ccc);
	background-position: calc(100% - 20px) calc(1em + 2px),
		calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
	background-size: 5px 5px, 5px 5px, 1px 1.5em;
	background-repeat: no-repeat;
	/*   text-overflow: ellipsis; */
}

select:hover {
	background-color: #FFAB02;
	box-shadow: 1px 3px 3px #AAAAAA;
}