html{
	height: 100%;
	width: 100%;
	font-size: 62.5%;
}

* {
	box-sizing: border-box;
}

body{
	height: 100%;
	width: 100%;
	background-color: white;
	color: black;
	font-size: 1.4rem;
	font-family: Lato;
	margin: 0;
}

.main-container {
	width: 100%;
	height: 100%;
}

.signin-signup-container {
	width: 100%;
	height: 100%;
}

.signin {
	width: 35rem;
	height: 80%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

h2 {
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: 0.018rem;
	color: rgba(0,0,0,.7);
	margin: 0 0 1rem;
}

small {
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: .05rem;
	color: #6e6c68;
}

.fields {
	display: flex;
	flex-direction: column;
	margin: 2rem 0;
}

.fields label {
	font-size: 1.5rem;
    color: rgba(0,0,0,0.7);
    letter-spacing: 0.5px;
}

.fields input, .submit {
	padding: 1rem;
	border: 1px solid gray;
	border-radius: 5px;
}