/* COLOR CODES
	orange - #eb6b08
	dark gray - #585858
	light gray - #c2c2c2
*/

/* [GLOBAL] */

form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
}

input,input[type] {
	width: 200px;
	border: 1px #282828 solid;
	background: #e8e8e8;
	color: #222222;
}


#submit, button {
	cursor: pointer;
	background: #d8d8d8;
	border: none;
	color: #383838;
	text-align: center;
	width: 100px;
}

#submit:hover, button:hover {
	background: #b8b8b8;
	color: #000000;
}

label {
	color: #c2c2c2;
}

label,
input,input[type] {
	text-align: left;
	width: 100%;
	font-size: 14px;
}
label + input {
	margin-bottom: 10px;
}
input[type] {
	padding: 5px;
}



/* [LOGIN] */

#login {
	display: flex;
	justify-content: center;
}

#login-content {
	max-width: 400px;
	background: #585858;
	border-radius: 10px;
	box-shadow: 0 0 5px #000;
	/*
		Border same color as background fixes an IE11 quirk with box-shadow
		https://stackoverflow.com/questions/22161981/remove-1px-transparent-space-from-css-box-shadow-in-ie11
	*/
	border: 1px solid #585858;
	margin: 55px 10px 10px 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	gap: 30px;
	padding: 20px 0;
	min-height: 252px;
}
#login-content #o365login {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

#login-content > h2 {
	color: #ffffff;
	font-size: 20px;
	letter-spacing: 6px;
	text-align: center;
	padding: 0;
	margin: 0;
}




/* [BELOW LOGIN] */

.login-links {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.login-links > a {
	display: flex;
	align-items: center;
	color: #777777;
}

.login-links > a:hover {
	text-decoration: underline;
}

.login-links > a > img {
	padding-right: 10px;
}


/* [MOBILE] */

@media only screen and (max-width:880px) {
	#login-content {
		margin: 20px 10px 10px 10px;
	}
	#login-content > h2 {
		letter-spacing: 2px;
	}
}