@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*,
*::after,
*::before{
	box-sizing: inherit;
}

body{
	font-family: "Roboto" , sans-serif;
	font-size: 16px;
	line-height: 1.2;
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(45deg, rgb(194, 202, 201), rgb(87, 235, 240));
	display: flex;
	justify-content: center;
	align-items: center;
}
.conteiner{
	width: 100%;

	max-width: 1000px;
	padding: 0 20px;
	background: #fff	;
	border-radius: 5px;
	box-shadow: 4px 4px 8px 0 rgba(0, 3, 5, 0.4);
	
}

a{
	text-decoration: none;
	color: black;
	font-size: 18px;
	font-weight: 700;

}
.content{
	padding: 40px 40px 70px 40px;
	position: relative;
}

.title-text{
margin-top: 25px;
width: 100%;
}

.details{
	margin-bottom: 15px;
	text-align: center;
}
.topic-text{
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 7px;
   text-align: center;
}
.topic-list{
	font-size: 15px;
	color: rgb(8, 123, 149);
	margin-bottom: 10px;
	text-align: center;
}
label{
 display: inline-block;
	color: rgb(103, 102, 111) ;
	margin-top: 30px;
}
labelsmall{
 display: inline-block;
	color: rgb(103, 102, 111) ;
	margin-top: 15px;
	margin-bottom: 0px;
	font-size: 12px;
}
.bolt{
	font-weight: 700;
	font-size: 18px;
	color: rgb(6, 6, 78);
}	
 .input-box{
	
	height: 50px;
	margin: 20px 0;
	padding: 0 0 0 20px;
 }


 .input-box input,
 .input-box textarea{
	width: 100%;
	height: 100%;
	border:none;
	background: rgb(221, 245, 249);
	box-shadow: 4px 4px 8px 0 rgba(0, 3, 5, 0.4);
   padding: 0 0 0 10px;
	margin: 10px;
	border-radius: 5px;

	outline: none;
	transition: 3s;
 }
 .input-box input:focus,
 .input-box textarea:focus{
	background: rgb(158, 214, 244);
 }

 .input-box textarea{
	resize:none;
	font-family: "Roboto" , sans-serif  ;
 }

 .message-box{
height: 80px;
 }
 .pilot, .navigator,.car{
	
	width:100%;
	height: 100%;
	margin: 0 5px;
 }

 button{
	display: inline-block;

 }

 .btn{
	color:#fff;
	background: rgb(158, 214, 244); 
	border: none;
	outline: none;
	margin: 0 20px;
	bottom:20px;
	right:40%;
	position: absolute;
	width: 200px;
	height: 50px;
	border-radius: 5px;
	transition: 3s;
	
 }
.btn:hover{
	background: rgb(8, 45, 61);
	
 }

 .checkbox{
	cursor:pointer
 }

 label{
	margin-bottom:10px ;
 }

 
 
 @media(max-width:770px){
	.checkbox{
		margin-bottom: 15px;
	}
	.btn{
		
		right:17%;
		
	}
 }






 




