body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.wrapper {
	width: 100wh;
	height: 100vh;
	/* max-width: 1440px; */
	margin: 0 auto;
	background-image: url(../images/BannerImage.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.header {
	padding-top: 50px;
	width: 100%;
	max-width: 685px;
}

.hero-container {
	padding: 50px 0 50px;
	width: 100%;
	max-width: 685px;
}

.hero-container h1 {
	font-size: 35px;
	color: #553191;
	text-transform: uppercase;
	font-weight: 800;
	/* text-align: justify; */
}

.deadline {
	font-size: 20px;
	color: #A03094;
	display: flex;
	flex-direction: row;
	gap: 250px
}

.deadline .text-link {
	font-weight: 700;
}

.nin-form {
	background-color: #fff;
	width: 100%;
	max-width: 600px;
	margin: auto;
	border-radius: 5px;
}

.nin-form form {
	padding: 25px;
	border: none;
}

fieldset {
	border: none;
}

legend {
	font-size: 1.185rem;
	font-weight: 600;
}

.btn {
	border-radius: 0;
}

.btn-danger {
	--bs-btn-color: #fff;
	--bs-btn-bg: #A03094;
	--bs-btn-border-color: #5D0C8C;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #5D0C8C;
	--bs-btn-hover-border-color: #5D0C8C;
	--bs-btn-focus-shadow-rgb: 225, 83, 97;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #A03094;
	--bs-btn-active-border-color: #5D0C8C;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
	background-color: #b19ac7;
	border-color: #ab94c3;
}

.outline-success {
	border: 1px solid #198754 !important;
	background-color: #EBFFF6 !important;
}

.form-control {
	display: block;
	width: 100%;
	padding: 0.75rem;
	font-size: 1.25rem;
	line-height: 1.5;
	border-radius: 0;
	text-transform: uppercase;
}

.form-control:active, .form-control:focus {
	outline: none !important;
}

.form-floating>.form-control, .form-floating>.form-control-plaintext {
	padding: 1rem 0.75rem;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
	height: calc(3.5rem + 2px);
}

.nin-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 1rem 1.5rem;
	min-width: 40%;
	border-radius: 20px;
	/* min-height: 24vh; */
}

.show-fieldset {
	display: block;
}

.hide-fieldset {
	display: none;
}

@media only screen and (max-width: 640px) {
	.header {
		padding-top: 50px;
	}

	.hero-container h1 {
		font-size: 34px;
	}

	.deadline .text-link {
		font-size: 18px;
		font-weight: 600;
	}

	.deadline {
		gap: 25px;
	}
}