:root {
	--main-color: #002469;
	--main-text-color: white;
	--slider-background: #404040;
	--grey-color: #F4F4F4;
	--accent-color: #F2A900;

	--header-padding: 50px;
	--container-max-width: 1500px;

	scroll-behavior: smooth;
}

body {
	width: 100%;
	height: 100%;

	/* font-family: 'Montserrat', sans-serif; */
	font-size: 21px;
	font-weight: 400;
	overflow-x: hidden;
}



/* General Styles */

.container {
    position: relative;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.flex__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


#login__page {
    position: relative;
    height: calc(100vh - 250px);
    width: 100vw;
}

#login__page h1 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

#login__form--wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 500px;
}

#login__form--wrapper h1 {
	margin-bottom: 40px;
}

#loginForm input {
	width: 100%;
	padding: 20px;
	background: var(--grey-color);
	margin-bottom: 15px;
	font-size: 25px;
	font-weight: 500;
    border: none;
	border-radius: 20px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	outline: none;
}

#loginForm input::placeholder {
    font-size: 25px;
	font-weight: 500;
}

#login__button {
	margin-top: 20px;
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 20px;
	font-size: 25px;
	font-weight: 700;
	color: white;
	cursor: pointer;
	border: none;
    transition: 0.4s;
}

#login__button:hover {
	background: var(--main-color);
	color: white;
    transition: 0.4s;
}

.login__form--link {
    margin-top: 40px;
    font-weight: 600;
    color: var(--main-color);
}


@media only screen and (max-width: 1930px) {
	#login__page {
		height: calc(100vh - 200px);
	}

	#login__page h1 {
		font-size: 28px;
		margin-top: 30px;
		margin-bottom: 30px;
	}

	#loginForm input {
		padding: 15px;
		margin-bottom: 10px;
		font-size: 23px;
		border-radius: 13px;
	}

	#login__button {
		margin-top: 15px;
		padding: 15px;
		border-radius: 13px;
		font-size: 23px;
	}
	#loginForm input::placeholder {
		font-size: 20px;
	}
}


@media only screen and (max-width: 920px) {
	#login__page {
		height: calc(100vh - 140px);
	}

	#login__page h1 {
		font-size: 24px;
		margin-top: 25px;
		margin-bottom: 25px;
	}

	#loginForm input {
		padding: 15px;
		margin-bottom: 10px;
		font-size: 20px;
		border-radius: 7px;
	}

	#login__button {
		margin-top: 12px;
		padding: 12px;
		border-radius: 7px;
		font-size: 20px;
	}

	#loginForm input::placeholder {
		font-size: 18px;
	}

	.login__form--link {
		font-size: 19px;
	}
}

@media only screen and (max-width: 600px) {
	#login__form--wrapper {
		width: 400px;
	}
}

@media only screen and (max-width: 470px) {
	#login__form--wrapper {
		width: 300px;
	}
}

