﻿body {
	font-family: Arial, sans-serif;
	background-color: #fff;
	margin: 0;
	padding: 0;
}

.header-banner {
	background: linear-gradient(to right, #003a78, #0075c9);
	color: white;
	padding: 30px;
	margin-left: 150px;
	margin-right: 150px;
	font-size: 30px;
	font-weight: bold;
	text-align: left;
	margin-top: 50px;
}

.form-container {
	max-width: 1600px;
	background-color: #f0f0f0;
	margin: 40px auto;
	padding: 80px 100px;
	border-radius: 40px;
}

.form-group {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	gap: 20px;
}

.form-label {
	width: 200px;
	font-weight: bold;
	font-size: 18px;
	white-space: nowrap;
	margin-top: 10px;
}

.form-input {
	flex: 1;
}

	.form-input input {
		height: 55px;
		font-size: 16px;
		border-radius: 8px;
		padding: 10px 15px;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		background-color: #ffffff;
		border: 2px solid #0075c9;
		transition: border-color 0.3s ease, box-shadow 0.3s ease;
	}


.code-title {
	text-align: left;
	font-size: 42px;
	font-weight: bold;
	color: #002c77;
	margin-top: 80px;
	margin-bottom: 30px;
}

.code-buttons {
	display: flex;
	justify-content: center;
	gap: 80px;
}

	.code-buttons a {
		padding: 15px 120px;
		font-size: 24px;
		font-weight: bold;
		border: 3px solid #005cb9;
		border-radius: 50px;
		color: #005cb9;
		background-color: white;
		text-decoration: none;
		transition: 0.3s ease;
	}
	.code-buttons button {
		padding: 15px 120px;
		font-size: 24px;
		font-weight: bold;
		border: 3px solid #005cb9;
		border-radius: 50px;
		color: #005cb9;
		background-color: white;
		cursor: pointer;
		transition: 0.3s ease;
		outline: none;
	}

		.code-buttons button:hover {
			background-color: #005cb9;
			color: white;
			border-color: #005cb9;
		}


		.code-buttons a:hover {
			background-color: #005cb9;
			color: white;
		}

@media (max-width: 991px) {
	.form-container {
		padding: 40px 30px;
		margin: 20px 20px;
	}

	.form-label {
		font-size: 24px !important;
		min-width: auto !important; 
		padding-right: 10px !important;
	}

	.form-group {
		flex-direction: column !important; 
		align-items: flex-start !important; 
		margin-bottom: 20px !important;
	}

	.form-input {
		width: 100% !important;
	}
}

@media (max-width: 575px) {
	.header-banner {
		font-size: 24px !important;
		margin: 30px 15px 0 15px !important;
	}

	.form-label {
		font-size: 20px !important;
	}

	.form-container {
		padding: 30px 20px !important;
		border-radius: 25px !important;
	}

	.code-title {
		font-size: 28px !important;
		margin-left: 0 !important;
		text-align: center !important;
	}

	.code-buttons {
		justify-content: center !important;
		gap: 20px !important;
		flex-wrap: wrap !important;
	}

		.code-buttons a {
			padding: 12px 30px !important;
			font-size: 18px !important;
		}
}
