/* a2.css */

header {
  margin-bottom: 2em;
}
footer {
  margin-top: 2em;
}

/* Header Styles */
h1 {
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 1em;
}

h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 0.8em;
}

h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 0.6em;
}

h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 0.4em;
}

h5 {
  font-weight: 500;
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 0.3em;
}

h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 0.2em;
}

/* Registration Form Styles */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
textarea {
	width: 100%;
	padding: 11px 16px;
	border-radius: 35px;
	background: #F2ECF0;
	border: 0;
	box-shadow: unset;
	outline: none;
}

label {
	display: block;
	margin-bottom: 4px;
	padding-left: 10px;
	font-size: 16px;
}

input[type="submit"],
button[type="submit"] {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	width: auto;
	color: #FFFFFF !important;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	background: #D9569B !important;
	border-radius: 35px !important;
	padding: 18px 26px !important;
	border: 0 !important;
	transition: .3s;
	margin: 0;
	margin-top: 8px;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
	box-shadow: 0 4px 25px 0 rgba(0,0,0,.35);
	background: #6076CE !important;
}

/* Form Description Block */
.form-description {
	background: rgb(240, 220, 233);
	border-radius: 40px;
	padding: 50px 40px;
}

.form-description h3 {
	color: #D9569B;
	margin-bottom: 15px;
}

.form-description > p {
	color: #404040;
	font-weight: 400;
	margin-bottom: 30px;
}

.form-description ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.form-description li {
	display: flex;
	gap: 15px;
	align-items: flex-start;
	margin-bottom: 20px;
}

.form-description li:last-child {
	margin-bottom: 0;
}

.form-description li::before {
	content: "↗";
	color: #D9569B;
	font-size: 18px;
	font-weight: 700;
	min-width: 24px;
	flex-shrink: 0;
}

.form-description li p {
	color: #5E74CE;
	font-weight: 500;
	margin: 0;
	line-height: 21px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	/* Ensure consistent padding with header/footer */
	main .container {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	
	h1 {
		font-size: 32px;
		line-height: 32px;
	}
	
	h2 {
		font-size: 25px;
		line-height: 25px;
	}
	
	h3 {
		font-size: 23px;
		line-height: 23px;
	}
	
	.form-description {
		padding: 30px 20px;
		border-radius: 25px;
	}
}