body {
	font-family: NeueHaas,input mono,sans-serif;
	overflow: hidden;
	color: #393E41;
	margin: 0;
}
.button-container {
	position: relative;
	width: 200px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.button {
	background-color: white;
	height: 60px;
	width: 200px;
	text-align: center;
	align-items: center;
	border-radius: 20px;
	border: 2px solid black;
	text-decoration: none;
	font-size: 30px;
	line-height: 60px;
}

.body-div {
	position: relative;
	height: 1000px;
	min-height: 100%;
	min-width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	flex-direction: column;
	background: #24c6dc; /* fallback for old browsers */
	background: -webkit-linear-gradient(to bottom, #24c6dc, #514a9d); /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to bottom, #24c6dc, #514a9d); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.login-main-container {
	width: 400px;
	height: 600px;
	background-color: #fff;
	margin: 0 auto;
	border-radius: 6px;
	box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}
.title {
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
}
.undertitle {
	text-align: center;
}
.login-form-item {
	background-color: #fff;
	height: 42px;
	width: 90%;
	margin-left: 4%;
	border: 0;
	border-bottom: 1px solid #ccc;
	font-size: 100%;
}
.login-form-item::placeholder {
    transition: 0.5s;
}
.login-form-item:hover {
    border-bottom: 1px solid #52b69a;
}
.login-form-item:hover::placeholder {
    transition: 0.5s;
    opacity: 0.35;
}
.login-form-item:focus {
    border-bottom: 1px solid #52b69a;
}
.division-border {
	border-top: 1px solid black;
}
.login-description-items {
	padding-left: 5%;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 12px;
}
.help-block {
	display: block;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #737373;
	margin-left: 5%;
}
.submit-button-container {
	display: flex;
}
.submit-button {
	margin: 0 auto;
	margin-top: 24px;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 25px;
	white-space: nowrap;
	color: #fff;
	background-color: #393E41;
	padding: 12px 25px 12px 25px;
	text-transform: uppercase;
	background-image: linear-gradient(to right, #4CB8C4 0%, #3CD3AD  51%, #4CB8C4  100%);
    transition: 0.5s;
    background-size: 200% auto;
    box-shadow: 0 0 20px #eee;
    width: 60%;
    letter-spacing: 1px;
    font-family: 'Fredoka One', cursive;
}
input[type="submit"]:hover {
	background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

