* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background: url('backgroundpic.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	font-family: sans-serif;
	font-size: 1.5em;
}

h1 {
	color: white;
}

h2 {
	color: white;
	font-style: italic;
	font-size: larger;
	margin-bottom: 5%;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: space-between;
	z-index: 99;
}

.header .logo {
	font-size: 1.7em;
	color: white;
	text-decoration: none;
}

.nav a {
	position: relative;
	font-size: 1.1em;
	color: white;
	text-decoration: none;
	margin-left: 40px;
}

.nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 3px;
	background: white;
	border-radius: 5px;
	transform: scaleX(0);
	transition: .5s;
}

.nav a:hover::after {
	background-color: #ddd;
	transform: scaleX(1);
}

.home {
	position: relative;
	width: 100%;
	height: 100vh;
	background: url('background.jpg') no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 80px 100px 0;
}

.home .content {
	max-width: 700px;
	color: white;
}

.content h2 {
	font-size: 2.5em;
	letter-spacing: .03em;
}

.content p {
	margin: 10px 0 40px;
}

.content a {
	border: 2px solid white;
	color: white;
	text-decoration: none;
	font-weight: 500;
	padding: 10px 40px;
	border-radius: 30px;
	transition: .15s;
}

.content a:hover {
	background-color: rgb(50, 60, 121);
}

.login h1 {
	color: white;
	font-weight: bolder;
	font-size: xx-large;
}

.login {
	text-align: center;
	margin: auto;
	padding: 75px;
	color: white;
	width: 600px;
	background-color: transparent;
	border-radius: 15px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: solid rgba(255, 255, 255, .5);
	box-shadow: 0 0 30px rgba(0, 0, 0, .5);
}

.inputFields input {
	width: 100%;
	height: 100%;
	background: transparent;
	border: 1px soid white;
	outline: none;
	border-radius: 30px;
	font-size: 1em;
	color: white;
	padding: 0 25px 0 60px;
	font-size: 24px;
	left: 45px;
}

.login .inputFields {
	position: relative;
	width: 100%;
	height: 50px;
	margin: 40px 0;
}

.inputFields label {
	position: absolute;
	font-size: 1em;
	color: white;
	top: 50%;
	left: 60px;
	transform: translateY(-50%);
	pointer-events: none;
	transition: 0.5s;
}

.inputFields input:focus~label,
.inputFields input:valid~label {
	font-size: .8em;
	top: -14px;
	left: 17px;
	transition: 0.5s;
}


.inputFields .icon {
	position: absolute;
	top: 14px;
	left: 25px;
	font-size: 1em;
	color: white;
}

.loginButton {
	background: linear-gradient(90deg, #22164f, #4b2bbe);
	height: 100%;
	width: 100%;
	border: none;
	border-radius: 24px;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 15px 2px;
	cursor: pointer;
	box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24);
}

::placeholder {
	color: whitesmoke;
}

.user {
	color: white;
	height: 60px;
	width: 400px;
	font-size: 16px;
	background-color: transparent;
	border-style: solid;
	border-radius: 24px;
}

.password {
	margin-top: 5%;
	height: 60px;
	width: 400px;
	font-size: 16px;
	background-color: transparent;
	border-style: solid;
	border-radius: 24px;
	transform: translateY(-41%);
}

.remember-forgot {
	font-size: 0.7em;
	color: white;
	font-weight: 500;
	margin: -25px 0 15px;
	display: flex;
	justify-content: space-between;
	font-weight: bold;
}

.remember-forgot input {
	color: black;
}

.remember-forgot label input {
	accent-color: #22164f;
	margin-right: 7px;
}

.remember-forgot a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}

.remember-forgot a:hover {
	color:rgb(128, 47, 144);
	transition: 0.1s;
}

.loginButton:active {
	transform: scale(0.98);
	/* Scaling button to 0.98 to its original size
	box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);*/
}


.register-container {
	text-align: center;
	color: white;
	font-size: 0.7em;
}

.register-container a {
	color: white;
	text-decoration: none;
}

.register-container a:hover {
	color:rgb(128, 47, 144);
}
