@import url("https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Schoolbell&display=swap");

::-webkit-scrollbar,
img::selection,
br,
a::selection,
h1::selection {
	background: none;
	display: none;
	pointer-events: none;
}

* {
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 0;
	margin: 0;
	/* color: black; */
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	font-family: "Poppins", system-ui, sans-serif;
	background: none;
	border: none;
	outline: none;
	font-family: "Host Grotesk", sans-serif;
}

body {
	width: 100vw;
	min-height: 500px;
	height: 100vh;
	display: grid;
	place-content: center;
	background: #ccc url(../../images/bg_img.jpg) no-repeat center center fixed;
    background-size: cover;
    position: relative;
}
/* body:before { position: absolute; content: ''; width: 55.2%; height: 100%; top: 0; left: 0; background: rgba(43,89,166,.8);} */

section {
	display: flex;
	max-height: 480px;
	min-height: 480px;
	height: 90vh;
	max-width: 900px;
	width: 90vw;
	overflow: hidden;
	box-shadow: rgba(18, 43, 85, 0.45) 0px 5px 30px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

#cover {
	flex: 1;
	height: 100%;
	position: relative;
}

#cover * {
	color: #eee;
}

#icon {
	position: absolute;
	top: 20px;
	left: 30px;
	z-index: 2;
	filter: invert(1);
}

#sliderContainer {
	width: 100%;
	height: 100%;
    position: relative;
}

#sliderContainer div {
	width: 100%;
	height: 100%;
	position: relative;
}

#sliderContainer h1 {
	position: absolute;
	top: 50%;
	width: 70%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#sliderContainer .about {
	position: absolute;
	bottom: 50px;
	width: 70%;
	height: 40px;
	display: flex;
	justify-content: space-between;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.controlLabels {
	display: flex;
	justify-content: end;
	gap: 7px;
}

.controlLabels label {
	border: 0.5px solid #fff;
	opacity: 1;
	width: 30px;
	height: 30px;
	display: grid;
	place-content: center;
	border-radius: 50px;
	padding-bottom: 4px;
	cursor: pointer;
}
.controlLabels label i{ position: relative; top: 2px;}

#sliderContainer #model1,
#sliderContainer #model2,
#sliderContainer #model3,
#sliderContainer #model4 {
	display: none;
}

#slide1:checked ~ #sliderContainer #model1,
#slide2:checked ~ #sliderContainer #model2,
#slide3:checked ~ #sliderContainer #model3,
#slide4:checked ~ #sliderContainer #model4 {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
}

#sliderContainer div img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(1.5px) brightness(0.9);
}

#loginForm {
	width: 350px;
	height: 100%;
	padding-top: 80px;
	background: #fff;
	padding-inline: 25px;
	white-space: nowrap;
    padding-left: 30px;
    padding-right: 30px;
}
#loginForm h1{ font-size: 2rem;}

img {
	cursor-pointer: none;
}

#createAccountForm {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-inline: auto;
	margin-block: 10px;
}

input[type="text"],
input[type="email"],
input[type="password"],
button {
	flex: 1;
	padding: 7px 10px;
	font-size: 1em;
	width: 100%;
	border: 0.5px solid #eee;
	border-radius: 7px;
}

input:focus {
	border: 0.5px solid #333;
}

button {
	font-size: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-weight: bold;
    padding: 0.6rem;
}

button,
a {
	cursor: pointer;
}

#createAccount {
	color: #eee;
	background: #2b59a6;
}

.login {
	display: flex;
	justify-content: center;
	gap: 5px;
}

.login *,
small {
	margin-top: 15px;
	text-align: center;
	font-size: 0.9rem !important;
	opacity: 0.7;
}
.login p{ font-size: 1rem !important;}

a {
	opacity: 1;
    font-size: 0.9rem !important;
}
.login a{ font-size: 0.95rem !important; color: #000 !important; font-weight: bold;}

small {
	font-size: 0.9rem;
}

.register { min-height: 530px; max-height: 530px;}
.register #loginForm{ padding-top: 50px;}

@media (max-width: 650px) {
	section {
		width: 300px;
	}

	#cover {
		display: none;
	}
}