@charset "UTF-8";
/* CSS Document */


 form, h1, h2, .textbox{
	font-family: 'Barlow', 'sans-serif';
	font-weight: 100;
}

h1 {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.18em;
}

h2 {
	font-weight: 100;
	font-size: 1em;
	margin: 0;
	margin-bottom: 0.8em;
	color: #9E008C;
}

form {
	margin: 0 auto;
	width: 280px;
	margin-top: 8em;
}

form input, button {
	width: 100%;
	height: 30px;
	margin: 0 auto;
	margin-bottom: 2em;
	
}

.textbox {
	font-size: 1em;
	font-weight: 100;
	position: relative;
	right: 5px;
	padding-left: 6px;
}

.submit, #submit {
	height: 40px;
	display: block;
	background-color: #6F0069;
	border: none;
	border-radius: 5px;
	color: white;
	font-size: 1.2em;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	padding: 0 3px;

	font-family: "Barlow", "sans-serif";
	font-weight: 100;
	
	transition: all 0.2s ease;
}

.submit:hover, #submit:hover {
	background-color: rgba(228,161,155,1.00);
	padding: 3px;
	height: 50px;
}




@media screen and (min-width: 500px) {

	form {
		background-color: white;
		padding: 2em 3em 4em 3em;
		box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 50px;
	}

	body {
		background-image: url("../img/flowercloseup.png");
	}
	
}

@media screen and (min-width: 1000px) {
			
			body, html {
				height: 100%;
			}
			
			#loginpic {
				background-image: url("../img/flowercloseup.png");
				background-size: cover;
				background-position: center;
				width: 40%;
				height: 100%;
				float: left;
				box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 100px inset;
			}

				form {
					box-shadow: none;
				}

			#login {
				width: 60%;
				float:right;
			}

			body {
				background-image: none;
				height: 100%;
			}
			
		} 

