
/* Copyright Anderson-Reed Nuclear Corporation */
/* style/sign-in.css */

@keyframes incorrect {
	from {
		color: red;
	}
	to {
		color: black;
	}
}

form {
	text-align: center;
}

#error {
	color: black;
	font-size: 12pt;
	animation-name: incorrect;
	animation-duration: 4s;
}

#signin-submit {
	height: 30px;
	width: 75px;
	border-style: outset;
	background: #333333;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	text-shadow: none;
	cursor: pointer;
}

.text-input {
	width: 85%;
	border: 1px solid #333;
	border-radius: 5px;
	padding: 8px;
	font-size: 12pt;
}

.column {
	float: left;
	width: 50%;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

