/*
==========-----
Stylesheet for members login page
==========-----
*/

@import "colors.css";

/*
Filters
*/

.searchContainer {
	width: 75%;
	max-width: 600px;
	margin: auto;
	margin-top: 25px;
	margin-bottom: 25px;
	box-sizing: border-box;

	position: relative;

	text-align: center;

	padding: 8px;

	background-color: var(--login-bg-color);
	color: var(--login-text-color);

	border-radius: 10px;
	box-shadow: 0 0 5px 1px black;
}

input[type=text], input[type=password] {
	width: 100%;
	max-width: 500px;
	padding: 4px;
	margin: 6px 0;
	box-sizing: border-box;
	font-size: 1.05em;

	transition: all 0.2s ease-in-out;
}

input[type=text]:focus, input[type=text]:hover, input[type=password]:focus, input[type=password]:hover {
	background-color: rgb(191, 235, 255);
}


button[type="submit"] {
	display: inline-block;

	text-align: center;

	padding: 5px;
	padding-left: 8px;
	padding-right: 8px;
	font-size: 1.05em;

	margin: 20px;
	margin-left: 10px;
	margin-right: 10px;

	text-decoration: none;
	color: white;
	background-color: #32394d;

	border: 1px solid black;
	border-radius: 3px;
	box-shadow: 0 0 5px 0 black;
	
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

button[type="submit"]:hover {
	color: white;
	background-color: #5d6783;
}

.errorText {
	font-size: 1.1em;
	text-align: center;
	color: rgb(255, 105, 85);
}

/*
=====
Mobile responsive styling
=====
*/

/* Tablet/Laptop */
@media only screen and (max-width:1367px) {
	.searchContainer {
		width: 100%;
	}
}