@import url('../null&header&footer.css');

/*---------------------------------------------MAIN-------------------------------------------------*/

.main {
	margin: 17px 0;
}

/*-----------------------------------------main content---------------------------------------------*/

.main__content {
	width: 90%;
	background-color: #e5e5e5;
	padding: 20px;
	margin: 0px 20px 0px 0px;
	margin: 0 auto;
	height: 600px;
}

/*--------------------------------------------------------------------------------------------------*/

h2{
	font-size: 22px;
	font-weight: 600;
	text-decoration: underline;
	margin: 0px 0px 20px 0px;
	text-align: center;
	margin: 30px 0px 30px 0px;
}

/*--------------------------------------------forma-------------------------------------------------*/

.main__content-form{
	width: 500px;
	height: 400px;
	margin: 50px auto;
	border: 1px solid #000;
	border-radius: 7px;
	padding: 10px;
	background-color: #e0e0e0;
}

.input-box{
	width: 100%;
	height: 50px;
	margin: 40px 0;
	position: relative;
	padding: 0 20px;
}

.input-box input{
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	border: 1px solid #000;
	border-radius: 40px;
	font-size: 20px;
	color: #000;
	padding: 20px 45px 20px 20px;
}

.input-box i{
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
}

.input-box input:focus {
	border-color: #007bff; /* цвет рамки при фокусе */
	box-shadow: 0 0 8px rgba(0, 123, 255, 0.5); /* эффект подсветки */
	outline: none; /* убираем стандартное обрамление */
 }

.button-btn{
	width: 100%;
	height: 60px;
	margin: 30px 0;
	position: relative;
	padding: 0 20px;
	justify-content: center;
	align-items: center;
}

.btn{
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	border: 1px solid #000;
	border-radius: 40px;
	font-size: 20px;
	color: #000;
	padding: 20px 45px 20px 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease; /* Плавный переход */
}

.btn:active {
	transform: translateY(7px); /* Смещение вниз */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Уменьшение тени */
}

/*------------Адаптивная вёрстка----------*/

@media(max-width: 607px){

	.main__content-form{
		width: 100%;
	}
}