body {
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 500;
}

form input[type=text], input[type=password] {
	margin: 5px 0px;
	box-sizing: border-box;
	line-height: 1.5;
	font-size: 16px;
	background: #fff;
	padding: .6875rem .75rem;
	border-radius: 4px;
	border: 1px solid silver;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #333e47;
	transition: all .3s ease;
}

form input[type=text]:focus, input[type=password]:focus {
	outline: none;
	border: 1px solid rgb(77, 176, 218);
}

.login-error {
    text-align: left;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: .8em;
    color: red;
}

.reset-password-link {
	cursor: pointer;
	color:rgb(77, 176, 218);
}
.reset-password-link:hover {
	color: #18769d;
}

#reset-password {
	overflow-y: hidden;
	max-height: 500px; /* approximate max height */

	transition: all 0.5s ease;
}
#reset-password.closed {
	/* transition-delay: 0ms; */
	max-height: 0;
}

#login {
	overflow-y: hidden;
	max-height: 500px; /* approximate max height */

	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

#login.closed {
	/* transition-property: all; */
	/* transition-duration: .5s; */
	max-height: 0;
}