@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');


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

body {
	font-family: 'Lato', sans-serif;
	color: #333;
	line-height: 1.6;
	}
ul{
	list-style-type: none; 
}
a {
	text-decoration: none;
	color: #333;
}
h1, h2{
	font-weight: 300;
	line-height: 1.2;
	margin: 10px, 0;
	align-content: center;
}
p{
	margin: 10px, 0;
}
img{
	width: 100%;
	padding: 5px;
}

/* Navbar */
.navbar{
	background-color: #fff;
	color: #000;
	height: 80px;
	overflow: hidden;
	width: 100%;
}

.navbar ul{
	display: flex;	
	}
.navbar a{
	color: #000000;
	padding: 10px;
	margin: 0 5px;
}
.navbar a:hover{
	border-bottom: 2px #fff solid;
}
.navbar .flex{
	justify-content:space-around;
}
/* Showcase */
.showcase {
	height: 600px;
	background-color: #047aed;
	color: #fff;
	position: relative;
}
.showcase h1{
	font-size: 40px;
	}
.showcase p{
	margin: 20px 0;
}
.showcase .grid{
	grid-template-columns: 55% 45%;
	gap: 30px;
	overflow: visible;
}
.showcase-form{
	position: relative;
	top: 60px;
	height: 600px;
	width: 400px;
	padding: 40px;
	z-index: 100;
	justify-self: flex-end;
}
.showcase-form .formcontrol{
	margin: 30px 0;
}
.showcase-form input[type='text'],
.showcase-form input[type='text'],
.showcase-form input[type='text'],
.showcase-form input[type='email'],
.showcase-form input[type='date']{
	border: 0;
	border-bottom: 1px solid #b4becb;
	width: 100%;
	padding: 3px;
	font-size: 16px;
	margin: 5px;
}
.showcase-form input:focus{
	outline: none;
}
/* Utilities */
.container{
	max-width: 1100px;
	margin: 0 auto;
	overflow: auto;
	padding: 0 40px;
}
.card{
	background-color: #FFF;
	color: #333;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
	margin: 10px;
	height: 600px;
}
.btn{
	display: inline-block;
	padding: 10px 30px;
	cursor: pointer;
	background: #b4becb;
	color: #fff;
	border: none;
	border-radius: 5px;
}
.btn-outline{
	background-color: transparent;
	border: 1px #fff solid;
}
.btn:hover{
	transform: scale(0.98);
}
.flex{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	
}
.grid{
	display: grid;
	grid-template-columns: 60% 40%;
	gap: 20px;
	justify-content: center;
	align-items: center;
	height: 100%;
	}
.banner{
	margin: 10px;
	widows: 100%;		
	justify-content: center;
	}