@charset "utf-8";
/* CSS Document */
:root {
	--primary-color: #821b21;
	--primary-dark: #66151a;
	--primary-light: #a8232a;
	--secondary-color: #f8f9fa;
	--text-color: #333;
	--text-light: #666;
	--border-color: #ddd;
	--success-color: #28a745;
	--warning-color: #ffc107;
	--danger-color: #dc3545;
	--shadow: 0 2px 10px rgba(0,0,0,0.1);
	--border-radius: 6px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

body {
	background-color: #f5f7fa;
	color: var(--text-color);
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Header Styles */
.header {
	background-color: white;
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 6px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo {
	width: 60px;
	height: 60px;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 24px;
}

.logo-text h1 {
	color: var(--primary-color);
	font-size: 24px;
	margin-bottom: 5px;
}

.logo-text .subtitle {
	color: var(--text-light);
	font-size: 14px;
}

/* header */
.user-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.user-email {
	color: var(--text-color);
	font-weight: 500;
}

.logout-btn {
	background-color: #6c757d;
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
}

.logout-btn:hover {
	background-color: #5a6268;
}

.login-btn {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 10px 25px;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
	text-decoration: none;
	display: inline-block;
}

.login-btn:hover {
	background-color: var(--primary-dark);
}

/* Main Content */
.main-content {
	margin-top: 30px;
}

.content-box {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.page-header {
	background-color: var(--primary-color);
	color: white;
	padding: 25px 30px;
}

.page-header h2 {
	font-size: 28px;
	margin-bottom: 10px;
}

.page-header .subtitle {
	opacity: 0.9;
}

.warning-box {
	background-color: #fff3cd;
	border-left: 5px solid var(--warning-color);
	padding: 20px;
	margin: 25px 30px;
	border-radius: 0 4px 4px 0;
}

.warning-box h3 {
	color: #856404;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.terms-content {
	padding: 30px;
	max-height: 500px;
	overflow-y: auto;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
.terms-content {
	border: 1px solid var(--border-color);
}

.terms-content h3 {
	color: var(--primary-color);
	margin: 25px 0 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #eee;
}

.terms-content p {
	margin-bottom: 15px;
}

.terms-content ul, .terms-content ol {
	margin-left: 25px;
	margin-bottom: 20px;
}

.terms-content li {
	margin-bottom: 10px;
}

.terms-content a {
	color: var(--primary-color);
	text-decoration: none;
}

.terms-content a:hover {
	text-decoration: underline;
}

/* Agreement Section */
.agreement-section {
	padding: 30px;
}

.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: var(--border-radius);
	border: 1px solid var(--border-color);
}

.checkbox-container input[type="checkbox"] {
	width: 22px;
	height: 22px;
	margin-top: 3px;
	cursor: pointer;
	accent-color: var(--primary-color);
}

.checkbox-container label {
	cursor: pointer;
	font-weight: 500;
	flex: 1;
}

.required-note {
	color: var(--danger-color);
	font-size: 14px;
	margin-bottom: 20px;
	padding-left: 30px;
}

/* Buttons */
.button-group {
	display: flex;
	justify-content: space-between;
	padding: 0 30px 30px;
	gap: 20px;
}

.btn {
	padding: 14px 32px;
	border: none;
	border-radius: var(--border-radius);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	text-align: center;
}

.btn-secondary {
	background-color: #6c757d;
	color: white;
}

.btn-secondary:hover {
	background-color: #5a6268;
}

.btn-primary {
	background-color: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background-color: var(--primary-dark);
}

.btn-primary:disabled {
	background-color: #adb5bd;
	cursor: not-allowed;
}

/* Footer */
.footer {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
	color: var(--text-light);
	font-size: 14px;
}

.footer p {
	margin-bottom: 10px;
}


.logo-container img{height:72px;}

.login-btn {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
}

.login-btn:hover {
	background-color: var(--primary-dark);
}

/* Progress Steps */
.progress-steps {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	position: relative;
}

.progress-steps:before {
	content: '';
	position: absolute;
	top: 15px;
	left: 10%;
	right: 10%;
	height: 2px;
	background-color: var(--border-color);
	z-index: 1;
}

.progress-bar {
	position: absolute;
	top: 15px;
	left: 0;
	height: 2px;
	background-color: var(--primary-color);
	z-index: 2;
	transition: width 0.5s ease;
	width: 60%;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 3;
	position: relative;
	flex: 1;
}

.step-circle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: white;
	border: 2px solid var(--border-color);
	color: #adb5bd;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	margin-bottom: 8px;
	transition: all 0.3s ease;
}

.step.active .step-circle {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

.step.completed .step-circle {
	background-color: var(--success-color);
	border-color: var(--success-color);
	color: white;
}

.step-label {
	font-size: 12px;
	color: #adb5bd;
	text-align: center;
	max-width: 100px;
}

.step.active .step-label {
	color: var(--primary-color);
	font-weight: 500;
}

/* Login Box */
.main-container {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}
.login-container {
	width: 100%;
	max-width: 500px;
}
.login-box {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 40px;
}

.login-header {
	text-align: center;
	margin-bottom: 30px;
}

.login-header h2 {
	color: var(--primary-color);
	font-size: 24px;
	margin-bottom: 10px;
}

.login-header p {
	color: var(--text-light);
	font-size: 15px;
}

.info-box {
	background-color: #e9f7ef;
	border-left: 4px solid var(--success-color);
	padding: 15px;
	margin-bottom: 25px;
	border-radius: 0 4px 4px 0;
}

.info-box h4 {
	color: #155724;
	margin-bottom: 10px;
	font-size: 16px;
}

.info-box ul {
	margin-left: 20px;
	color: #0c5460;
}

.info-box li {
	margin-bottom: 5px;
	font-size: 14px;
}

/* Form Styles */
.form-group {
	margin-bottom: 25px;
}

label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--text-color);
}

label.required:after {
	content: " *";
	color: var(--danger-color);
}

.input-with-button {
	display: flex;
	gap: 10px;
}

input[type="email"], input[type="text"] {
	flex: 1;
	padding: 14px 16px;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 16px;
	transition: border-color 0.3s;
}

input[type="email"]:focus, input[type="text"]:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(130, 27, 33, 0.1);
}

.btn-small {
	padding: 10px 16px;
	font-size: 14px;
	min-width: auto;
	white-space: nowrap;
}
/* Form Actions */
.form-actions {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 30px;
}
/* OTP Section */
.otp-section {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dashed var(--border-color);
}

.otp-section.hidden {
	display: none;
}
.hidden{display: none;}
.countdown {
	font-size: 14px;
	color: var(--text-light);
	margin-top: 10px;
	text-align: center;
}

.resend-option {
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
	color: var(--text-light);
}
/**
* popup
*/
.modal-footer{text-align:center;margin-top:20px;}
.modal button{
	width:auto !important;
	line-height: unset !important;
	padding: 10px 15px;color: #fff !important;
    font-weight: 100;
}
.modal button.btn-default{
	background-color: var(--success-color) !important;
}


/* Application Info Bar */
.app-info-bar {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 20px;
	margin-bottom: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.app-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.app-number {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
}

.app-status {
	font-size: 14px;
	color: var(--text-light);
}

.app-status .status-badge {
	background-color: var(--warning-color);
	color: #856404;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-left: 10px;
}

.save-info {
	font-size: 14px;
	color: var(--text-light);
}

.save-info .last-saved {
	color: var(--success-color);
	font-weight: 500;
}

/* Form Container with Collapsible Sections */
.form-container {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	margin-bottom: 30px;
	overflow: hidden;
}

.form-section {
	border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
	border-bottom: none;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 30px;
	cursor: pointer;
	background-color: #f8f9fa;
	transition: background-color 0.3s;
}

.section-header:hover {
	background-color: #f0f0f0;
}

.section-header.expanded {
	background-color: white;
	border-bottom: 1px solid var(--border-color);
}

.title-with-number {
	display: flex;
	align-items: center;
	gap: 15px;
}

.section-number {
	background-color: var(--primary-color);
	color: white;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 18px;
}

.section-title {
	color: var(--primary-color);
	font-size: 22px;
	font-weight: 600;
}

.section-subtitle {
	color: var(--text-light);
	font-size: 14px;
	margin-top: 5px;
}

.section-status {
	font-size: 14px;
	color: var(--text-light);
}

.section-status.completed {
	color: var(--success-color);
	font-weight: 500;
}

.toggle-icon {
	font-size: 20px;
	color: var(--text-light);
	transition: transform 0.3s;
}

.section-header.expanded .toggle-icon {
	transform: rotate(180deg);
}

.section-content {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease;
}

.section-content.expanded {
	padding: 30px;
	max-height: 10000px;
}

/* Form Grid */
.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--text-color);
}

label.required:after {
	content: " *";
	color: var(--danger-color);
}

.help-text {
	font-size: 13px;
	color: var(--text-light);
	margin-top: 5px;
}

.warning-text-box { position: relative; padding-right: 24px; white-space: inherit !important; }
.warning-text-i { position: absolute; top: 50%; right: 0; z-index: 9; font-style: normal; font-size: 12px; line-height: 16px; width: 16px; height: 16px; text-align: center; border-radius: 100px; cursor: pointer; display: inline-block; margin: -8px 0 0 6px; background-color: #821b21; color: #fff; transition:all .3s ease; }
.warning-text-box .warning-text { box-sizing: border-box; position: absolute; top: 100%; right: 0; z-index: 10; font-size: 13px; color: #821b21; margin-top: 5px; background-color: rgba(255 255 255 / 100%); padding: 20px; border-radius: 15px 0 15px 15px; box-shadow: 0 3px 15px rgba(0,0,0,.1); transition:all .3s ease; opacity: 0; visibility: hidden; max-width: 100%; }
.warning-text-box .warning-text:before { 
	content:'';position:absolute;bottom:100%; right: 0; width:0;height:0;display:block;
	border-bottom:solid 8px #fff;
	border-left:solid 8px transparent;
	border-right:solid 8px transparent; }

.warning-text-i:hover { opacity: .6; transition:all .3s ease; }
.warning-text-i:hover + .warning-text { opacity: 1; visibility: visible; transition:all .3s ease; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 16px;
	transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(130, 27, 33, 0.1);
}

textarea {
	resize: vertical;
	min-height: 120px;
}

/* Phone input with country code */
.phone-input-group {
	display: flex;
	gap: 10px;
}

.country-code {
	width: 120px;
}

.phone-number {
	flex: 1;
}

/* Photo upload section */
.photo-upload-section {
	background-color: #f8f9fa;
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 30px;
	border: 1px solid var(--border-color);
}

.photo-upload-container {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.photo-upload-text {
	flex: 1;
}

.photo-upload-text p {
	margin-bottom: 10px;
	color: var(--text-color);
}

.annex-upload-container {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: white;
	padding: 10px 15px;
	border-radius: var(--border-radius);
	border: 1px solid var(--border-color);
}

.annex-number {
	font-weight: 600;
	color: var(--primary-color);
	min-width: 100px;
}

.upload-icon-btn {
	background-color: var(--primary-color);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
	transition: background-color 0.3s;
}

.upload-icon-btn:hover {
	background-color: var(--primary-dark);
}

.uploaded-file-info {
	margin-top: 10px;
	font-size: 14px;
	color: var(--text-light);
}

.uploaded-file-info strong {
	color: var(--success-color);
}

/* Note box */
.note-box {
	background-color: #fff8e1;
	border-left: 4px solid var(--warning-color);
	padding: 20px;
	border-radius: var(--border-radius);
	margin-bottom: 30px;
	font-size: 14px;
	color: var(--text-color);
}

.note-box strong {
	color: var(--primary-color);
}

/* Checkbox and Radio Groups */
.checkbox-group,
.radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 10px;
}

.checkbox-item,
.radio-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.checkbox-item input,
.radio-item input {
	width: 18px;
	height: 18px;
	accent-color: var(--primary-color);
}

/* Character Count */
.character-count {
	text-align: right;
	font-size: 14px;
	color: var(--text-light);
	margin-top: 5px;
}

.character-count.warning {
	color: var(--warning-color);
}

.character-count.error {
	color: var(--danger-color);
}

/* Table Styles */
.table-container {
	overflow-x: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

th, td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
	vertical-align: top;
}

th {
	background-color: #f8f9fa;
	font-weight: 600;
	color: var(--text-color);
	white-space: nowrap;
}

tr:hover {
	background-color: #f8f9fa;
}

table input,
table select {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	font-size: 14px;
}

/* Info icon for tooltip */
.info-icon {
	color: var(--primary-color);
	cursor: help;
	margin-left: 5px;
	position: relative;
	display: inline-block;
}

.info-icon:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}

.tooltip-text {
	visibility: hidden;
	width: 300px;
	background-color: #333;
	color: #fff;
	text-align: left;
	border-radius: 6px;
	padding: 10px;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -150px;
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 12px;
	font-weight: normal;
}

.tooltip-text::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #333 transparent transparent transparent;
}

/* Annex upload in tables */
.table-annex-container {
	display: flex;
	align-items: center;
	gap: 8px;
}

.table-annex-number {
	width: 100px;
}

.table-upload-icon {
	background-color: var(--primary-color);
	color: white;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	transition: background-color 0.3s;
}

.table-upload-icon:hover {
	background-color: var(--primary-dark);
}

.table-uploaded-file {
	font-size: 12px;
	color: var(--text-light);
	margin-top: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Section heading text */
.section-heading-text {
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 16px;
}

/* Table actions */
.table-actions {
	display: flex;
	gap: 10px;
}

.table-btn {
	padding: 6px 12px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
}

.table-btn.add {
	background-color: var(--success-color);
	color: white;
	margin-top: 10px;
}

.table-btn.remove {
	background-color: var(--danger-color);
	color: white;
}

/* Section Actions */
.section-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
	flex-wrap: wrap;
	gap: 20px;
}

.save-status {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-light);
	font-size: 14px;
}

.save-status.saved {
	color: var(--success-color);
}

.save-icon {
	font-size: 18px;
}

.section-buttons {
	display: flex;
	gap: 15px;
}
/* Declaration questions */
.declaration-question {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--border-color);
}

.declaration-question:last-child {
	border-bottom: none;
}

.question-text {
	font-weight: 500;
	margin-bottom: 10px;
}

.details-textarea {
	margin-top: 15px;
}

/* Total duration */
.total-duration {
	font-weight: 600;
	margin-top: 20px;
	font-size: 16px;
}
/* form */
.apply-form-list { padding: 30px; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.apply-form-list-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; }

.apply-form-list-box { display: block; }
.expanded .apply-form-list-box { display: none; }

.expanded  .page-header h2:after {
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-ms-transform:rotate(180deg);
-o-transform:rotate(180deg);
transform:rotate(180deg);}

.form-container .progress-steps{display:none;}
.form-container{max-width: 1400px;
    margin: 0 auto;
    padding: 20px;}
.form-container .warning-box{margin:25px 0;}
.form-container .page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 25px 30px;
    cursor: pointer;
}
.form-container .page-header h2 {
    font-size: 28px;
    padding-right: 24px;
    position: relative;
}

.form-container .expanded .page-header h2:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.form-container .page-header h2:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 14px;
    right: 0;
    background: url(../images/form-icon1-2.png) no-repeat;
    background-size: 100% 100%;
}


.btn-save {
	background-color: var(--success-color);
	color: white;
}

.btn-save:hover {
	background-color: #218838;
}


.btn-outline {
	background-color: white;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-outline:hover {
	background-color: var(--primary-color);
	color: white;
}

/* confirm page */
.confirmation-container {
	width: 100%;
	max-width: 800px;
}

/* Confirmation Card */
.confirmation-card {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	text-align: center;
}

.confirmation-header {
	background-color: var(--primary-color);
	color: white;
	padding: 40px 30px;
}

.success-icon {
	font-size: 80px;
	margin-bottom: 20px;
	color: white;
	animation: successAnimation 1s ease-in-out;
}

.confirmation-header h2 {
	font-size: 32px;
	margin-bottom: 10px;
}

.confirmation-header p {
	font-size: 18px;
	opacity: 0.9;
}

.confirmation-content {
	padding: 40px 30px;
}

.application-details {
	background-color: #f8f9fa;
	border-radius: var(--border-radius);
	padding: 25px;
	margin: 30px 0;
	text-align: left;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
	border-bottom: none;
}

.detail-label {
	font-weight: 600;
	color: var(--text-color);
}

.detail-value {
	color: var(--primary-color);
	font-weight: 500;
}

.confirmation-message {
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 30px;
	line-height: 1.8;
}

.next-steps {
	background-color: #e9f7ef;
	border-left: 4px solid var(--success-color);
	padding: 20px;
	margin: 30px 0;
	border-radius: 0 4px 4px 0;
	text-align: left;
}

.next-steps h3 {
	color: #155724;
	margin-bottom: 15px;
	font-size: 18px;
}

.next-steps ul {
	margin-left: 20px;
	color: #0c5460;
}

.next-steps li {
	margin-bottom: 10px;
}

.email-notice {
	background-color: #fff3cd;
	border-left: 4px solid var(--warning-color);
	padding: 20px;
	margin: 30px 0;
	border-radius: 0 4px 4px 0;
	text-align: left;
}

.email-notice h3 {
	color: #856404;
	margin-bottom: 10px;
	font-size: 18px;
}
/* Buttons */
.button-group {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
	flex-wrap: wrap;
}

/* form-complete */
.form-complete, .form-complete li { list-style-type:none; }

.form-complete li { padding-bottom: 14px; margin-bottom: 20px; border-bottom: 1px dashed #999; }
.form-complete li:last-child { margin-bottom: 0; padding-bottom: 0; border: 0; }

.form-complete-box .application-details { margin-top: 0; }


.form-complete-title h2 { font-size: 20px; color: #666; margin-bottom: 6px; }
/* .form-complete-con { padding: 0 20px; } */
.form-complete li .detail-item span { font-size: 14px; }
.form-complete li .detail-label { font-size: 14px; }

/* Application Info Bar */
.app-info-bar {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 20px;
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.app-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.app-number {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
}

.app-status {
	font-size: 14px;
	color: var(--text-light);
}

.app-status .status-badge {
	background-color: var(--warning-color);
	color: #856404;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-left: 10px;
}

/* Payment Container */
.payment-container {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 40px;
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.payment-header {
	text-align: center;
	margin-bottom: 30px;
}

.payment-header h2 {
	color: var(--primary-color);
	font-size: 28px;
	margin-bottom: 10px;
}

.payment-header p {
	color: var(--text-light);
	font-size: 16px;
}

/* Application Summary */
.application-summary {
	background-color: #f8f9fa;
	border-radius: var(--border-radius);
	padding: 25px;
	margin-bottom: 30px;
	border: 1px solid var(--border-color);
}

.summary-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}

.summary-content {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.summary-item {
	margin-bottom: 15px;
}

.summary-item label {
	display: block;
	font-weight: 500;
	color: var(--text-light);
	margin-bottom: 5px;
	font-size: 14px;
}

.summary-item .value {
	font-weight: 500;
	color: var(--text-color);
	font-size: 15px;
}

/* Fee Display */
.fee-display {
	background-color: #fff8e1;
	border-radius: var(--border-radius);
	padding: 25px;
	margin-bottom: 30px;
	border-left: 4px solid var(--warning-color);
	text-align: center;
}

.fee-label {
	font-size: 16px;
	color: var(--text-light);
	margin-bottom: 10px;
}

.fee-amount {
	font-size: 42px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.fee-note {
	font-size: 14px;
	color: var(--danger-color);
	font-weight: 500;
}

/* Payment Methods */
.payment-methods {
	margin-bottom: 40px;
}

.payment-methods h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 20px;
	text-align: center;
}

.methods-container {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.method-card {
	background-color: white;
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 25px;
	width: 300px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.method-card:hover {
	border-color: var(--primary-light);
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.method-card.selected {
	border-color: var(--primary-color);
	background-color: #fff8f8;
}

.method-icon {
	font-size: 48px;
	margin-bottom: 15px;
	color: var(--primary-color);
}

.method-name {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 10px;
}

.method-description {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.5;
}

/* Payment Details */
.payment-details {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
	display: none;
}

.payment-details.active {
	display: block;
}

.details-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.method-instructions {
	background-color: #f8f9fa;
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 20px;
	border-left: 4px solid var(--primary-color);
}

.method-instructions h4 {
	color: var(--primary-color);
	margin-bottom: 10px;
	font-size: 16px;
}

.method-instructions ol,
.method-instructions ul {
	margin-left: 20px;
	margin-bottom: 15px;
}

.method-instructions li {
	margin-bottom: 8px;
	color: var(--text-color);
	font-size: 14px;
}

.bank-details {
	background-color: #f8f9fa;
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 20px;
}

.bank-details h4 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 16px;
}

.bank-info {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 15px;
}

.bank-item {
	margin-bottom: 10px;
}

.bank-item label {
	display: block;
	font-weight: 500;
	color: var(--text-light);
	margin-bottom: 5px;
	font-size: 14px;
}

.bank-item .value {
	font-weight: 500;
	color: var(--text-color);
	font-size: 15px;
	word-break: break-all;
}

.copy-btn {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	margin-top: 5px;
	transition: background-color 0.3s;
}

.copy-btn:hover {
	background-color: var(--primary-dark);
}

/* Confirmation Checkbox */
.confirmation-checkbox {
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: var(--border-radius);
}

.checkbox-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.checkbox-item input {
	width: 20px;
	height: 20px;
	accent-color: var(--primary-color);
	margin-top: 3px;
}

.checkbox-item label {
	font-size: 15px;
	color: var(--text-color);
	line-height: 1.5;
}
/* Action Buttons */
.action-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

/* Upload restrictions notice */
.upload-restrictions {
	font-size: 12px;
	color: var(--warning-color);
	background-color: #fff8e1;
	padding: 8px 12px;
	border-radius: 4px;
	border-left: 3px solid var(--warning-color);
	margin-top: 10px;
	margin-bottom: 10px;
}

.upload-help-text {
	font-size: 12px;
	color: var(--text-light);
	margin-top: 5px;
	font-style: italic;
}
/* Responsive Design */

@media (max-width: 1200px) {
	.container, .header-content {
		max-width: 100%;
		padding: 15px;
	}
}

@media (max-width: 992px) {
	.photo-upload-container {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 10px;
	}
	
	.header-content {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
	}
	
	.button-group {
		flex-direction: column;
	}
	
	.btn {
		width: 100%;
	}
	
	.page-header {
		padding: 20px;
	}
	
	.terms-content, .agreement-section {
		padding: 20px;
	}
	
	.warning-box {
		margin: 20px;
	}
	/* login */
	.login-box {
		padding: 30px 20px;
	}
	
	.input-with-button {
		flex-direction: column;
		gap: 15px;
	}
	
	.btn-small {
		width: 100%;
	}
	
	.progress-steps:before {
		left: 15%;
		right: 15%;
	}
	
	.step-label {
		font-size: 11px;
	}
	/* header */
	.user-info {
		flex-direction: column;
		gap: 10px;
	}
	
	.app-info-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.section-header {
		padding: 15px 20px;
	}
	
	.section-content.expanded {
		padding: 20px;
	}
	
	.form-grid {
		grid-template-columns: 1fr;
	}
	
	.section-actions {
		flex-direction: column;
		align-items: stretch;
	}
	
	.section-buttons {
		flex-direction: column;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.logo-container {
		flex-direction: column;
		text-align: center;
	}
	
	.logo-text h1 {
		font-size: 20px;
	}
	
	.page-header h2 {
		font-size: 22px;
	}
	
	/* login */
	.progress-steps {
		overflow-x: auto;
		padding-bottom: 10px;
	}
	
	.step {
		min-width: 80px;
	}
	
	.login-header h2 {
		font-size: 20px;
	}
	
	.login-header p {
		font-size: 14px;
	}
	
	.section-title {
		font-size: 18px;
	}
	
	.checkbox-group,
	.radio-group {
		flex-direction: column;
		gap: 10px;
	}
	
	.table-container {
		font-size: 14px;
	}
	
	th, td {
		padding: 8px 10px;
	}
	
	.tooltip-text {
		width: 250px;
		margin-left: -125px;
	}
}
