@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap");

/* BODY STYLES*************************************************** */
body {
	font-family: "Montserrat", sans-serif;
	font-weight: 300;
	min-height: 100vh;
	background-color: #423f3d; /* charcoal color */
	background-image: url("../images/main-bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

/* MAIN PANEL******************************************************* */
main {
	min-height: 100vh;
	text-align: center;
	padding-top: 30px;
}
.heading .text {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
}
.icon .material-icons-outlined {
	font-size: 70px;
}

/* FORM STYLES************************************************************ */
.form {
	width: 300px;
	margin: 30px auto 20px;
}
.form-group {
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 6px 2px;
	margin-bottom: 20px;
	transition: all 0.2s;
}
.form-group:focus,
.form-group:hover {
	box-shadow: 1px 1px 2px #fff, -1px -1px 2px #fff;
}
.form-group .form-field {
	background-color: transparent;
	border: none;
	color: #fff;
	font-size: 0.9rem;

	box-sizing: border-box;
	display: inline-block;
	width: 80%;
	height: 35px;
}
.form-group .form-field:hover,
.form-group .form-field:focus {
	outline: none;
}
.form-group .form-field::placeholder {
	color: #fff;
}
.form-group .icon {
	color: #fff;
	font-size: 16px;
	display: inline-block;
	width: 15%;
}
.form button {
	display: block;
	width: 100%;
	height: 50px;
	border: none;
	border-radius: 5px;
	margin-top: 30px;

	color: #2a52be;
	font-weight: bold;
	cursor: pointer;
}

/* FORM LINKS************************************************************ */
.form-links {
	color: lightgray;
}
.form-links a {
	color: lightgray;
	text-decoration: none;
}
.form-links #forgotPassword {
	text-align: right;
	font-weight: 400;
	font-size: 0.95rem;
}


.form #socialIcons{
	margin: 20px 0 10px;
}
.form #socialIcons a{
	color: #fff;
	margin-bottom: 10px;
	width: 100%;
}
.form #socialIcons i{
	font-size: 22px;
	margin-right: 5px;
	vertical-align: middle;
}
.form #socialIcons .fb{
	background-color: #3B5998;
}
.form #socialIcons .google{
	background-color: #dd4b39;
}


.form-links #registerLink,
.form-links #loginLink {
	color: #fff;
	text-align: left;
	font-weight: 400;
	font-size: 0.95rem;
}
.form-links #registerLink a,
.form-links #loginLink a {
	font-weight: bold;
}

/* VERIFY ACCOUNT******************************************************** */
#verifyAccountField {
	width: 100%;
	font-size: 2em;
	font-weight: 400;
	text-align: center;
	letter-spacing: 8px;
}

/* MOBILE STYLES******************************************************** */
@media (max-width: 600px) {
	.form {
		padding: 35px 20px 0;
		width: 100%;
	}
	.form-group {
		padding-right: 10px;
		padding-left: 10px;
	}
	.form-group .form-field {
		width: calc(100% - 25px);
	}
	.form-group .icon {
		width: 20px;
	}
}
