/* Apply global styles to reset margin, padding, and font-family */
*{
	margin: 0;
	padding: 0;
	font-family:  "Amatic SC", sans-serif;
	box-sizing: border-box;
}

/* Styling for the main container */
.container{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0,0,50,0.5),rgba(0,0,50,0.5));
	background-position: center;
	background-size: cover;
	position: relative;
}

/* Styling for the form box */
.form-box{
	width: 100%;
	max-width: 350px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #F5F5F5;
	padding: 50px,60px,70px;
	text-align: center;
	border-radius: 100px;
}

/* Styling for the form box title */
.form-box h2{
	font-size: 40px;
	margin-bottom: 20px;
	margin-top: 20px;
	color:#ce1212;
	position: relative;
}

/* Styling for input fields */
.input-field{
	background: #000;
	margin: 15px, 0;
	border-radius: 20px;
	display:flex;
	align-items: center;
	max-height: 60px;
	transition: max-height 0.5s;
	overflow: hidden;
}

/* Styling for input elements */
input{
	outline: 0;
	padding: 21px, 18px;
	border: 5px solid #f0f0f0;
	border-radius: 20px;
	display: block;
	font-size: 12px;
	padding: 8px;
	width: 85%;
}

/* Styling for icons inside input fields */
.input-field i{
	margin-left: 10px;
	color: #ce1212;
	margin-right: 15px;
}

/* Styling for paragraph elements within forms */
form p{
	padding: 20px;
	font-size: 13px;
}

/* Styling for anchor elements within forms */
form p a{
	text-decoration: none;
	color:#ce1212;
	padding: 4px;
}

/* Styling for button field */
.btn-field{
	width: 50%;
	display: flex;
	margin-left: 90px;
	padding: 10px;
}

/* Styling for buttons */
.btn-field button{
	flex-basis: 100%;
	background:#ce1212 ;
	color: #fff;
	height: 30px;
	border-radius: 20px;
	border: 0;
	outline: 0;
	cursor: pointer;
	transition: 1s;
}

/* Styling for the input group */
.input-group{
	height: 140px;
}