/* General Styles */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f9f9f9;
	color: #333;
}

input[type="submit"] {
	background-color: #00147e;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

input[type="submit"]:hover {
	background-color: #00147e;
}

h1, h2 {
	text-align: center;
	text-transform: uppercase;
}

h2 {
	border-bottom: 1.5px solid #00147e;
	padding-bottom: 5px;
	margin-bottom: 20px;
	font-size: 1.5rem;
}

/* Form Container */
.container, .Applicant, .uploadQualifications, .form, fieldset {
	background-color: #ffffff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	max-width: 800px;
	margin: 40px auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.radio {
	fieldset {
		legend {
			text-transform: uppercase;
		}
	}
}

.inverse-fieldset {
	background-color: #00147e !important;
	border: 1px solid #ddd;
	input[type="submit"] {
		background-color: #f79422 !important;
	}
	h2 {
		color: #fff !important;
		border-bottom: 1.5px solid #ddd;
	}
	input[type="text"], input[type="date"], input[type="email"], input[type="password"], input[type="number"], input[type="file"], textarea, select {
		background-color: #fff;
		color: #333;
	}
	label {
		color: #fff !important;
	}
}

.h2-inverse {
	color: #fff !important;
}


.form {
	background: #fff;
	margin: 20px auto;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	width: 80%;
	max-width: 900px;
}

.form-info {
	font-style: italic;
	color: red;
}

.form-info-success{
	font-style: italic;
	color: green;
}

legend {
	font-weight: bold;
	color: #333;
}

.warning-text {
	color: red;
	font-size: 14px;
}

/* Form Inputs */
form label {
	display: inline-block;
	margin-bottom: 5px;
}

form input[type="text"],
form input[type="date"],
form input[type="email"],
form input[type="password"],
form input[type="number"],
form input[type="file"],
form textarea,
select {
	display: inline-block;
	width: calc(100% - 12px);
	padding: 8px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}

input[type="text"]:focus,
input[type="date"]:focus,
select:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
}

/* Buttons */
button, .form-buttons button {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	background-color: #007BFF;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	font-size: 16px;
}

button:hover, .form-buttons button:hover, .actions a:hover {
	background-color: #0056b3;
}

button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

button.skip {
	background-color: #f44336;
}

button.skip:hover {
	background-color: #d32f2f;
}

.styled-button {
	background-color: #00147e;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.styled-button:hover {
	background-color: #00147e;
	transform: scale(1.05);
}

.styled-button:active {
	background-color: #00147e;
	transform: scale(1);
}

/* Table Styles */
table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

table th, table td {
	padding: 10px 15px;
	text-align: left;
	vertical-align: top;
}

table th {
	background-color: #f4f4f4;
	color: #0a0a0a;
	font-weight: 900;
}

table tr:nth-child(even) {
	background-color: #f9f9f9;
}

/* Alerts */
.alert {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
	padding: 10px 15px;
	border-radius: 5px;
	margin-bottom: 15px;
	text-align: center;
}

/* Custom Width */
.custom-width {
	width: 300px;
}

/* Miscellaneous Alignments */
.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

/* Headers for Subsections */
.sub-header {
	font-weight: bold;
	margin-top: 10px;
	font-size: 1.2rem;
	color: #00147e;
}
.payment-option {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
	margin-bottom: 10px;
}
.payment-option img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}
.payment-details {
	text-align: left;
	flex: 1;
}
.payment-details span {
	font-size: 16px;
	font-weight: bold;
	color: #333;
}
.payment-details p {
	font-size: 14px;
	color: #666;
	margin: 5px 0 0;
}
