: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;
}

#register__page h1 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

#register__form--wrapper {
	margin: 0 auto;
	width: 500px;
}

#registerForm input {
	width: 100%;
	padding: 20px;
	background: var(--grey-color);
	margin-bottom: 10px;
	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;
}

#registerForm input::placeholder {
    font-size: 25px;
	font-weight: 500;
}

#register__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;
}

#register__button:hover {
	background: var(--main-color);
	color: white;
    transition: 0.4s;
}

.register__form--link {
    margin-top: 40px;
    font-weight: 600;
    color: var(--main-color);
}

.register__form--helper-text {
	margin-top: 40px;
    font-weight: 400;
	font-size: 18px;
}



@media only screen and (max-width: 1930px) {
	#register__page h1 {
		font-size: 28px;
	}

	#registerForm input {
		padding: 15px;
		margin-bottom: 10px;
		font-size: 23px;
		border-radius: 13px;
	}

	#register__button {
		margin-top: 15px;
		padding: 15px;
		border-radius: 13px;
		font-size: 23px;
	}
	#registerForm input::placeholder {
		font-size: 20px;
	}
}


@media only screen and (max-width: 920px) {
	#register__page h1 {
		font-size: 24px;
		margin-top: 30px;
		margin-bottom: 30px;
	}

	#registerForm input {
		padding: 15px;
		margin-bottom: 10px;
		font-size: 20px;
		border-radius: 7px;
	}

	#register__button {
		margin-top: 12px;
		padding: 12px;
		border-radius: 7px;
		font-size: 20px;
	}

	#registerForm input::placeholder {
		font-size: 18px;
	}

	.register__form--helper-text span {
		font-size: 16px;
	}

	.register__form--link {
		font-size: 19px;
	}
}

@media only screen and (max-width: 600px) {
	#register__form--wrapper {
		width: 400px;
	}
}

@media only screen and (max-width: 470px) {
	#register__form--wrapper {
		width: 300px;
	}
}
