/*
 * Arsh Insh Events — Exhibitor/Sponsor application form styling.
 * Matches the site's design system (Ink/Brass/Wine) without pulling in
 * any extra dependency; plain flexbox, no build step.
 */

.aie-app-form {
	max-width: 100%;
	font-family: inherit;
}

.aie-app-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 4px;
}

.aie-app-field {
	flex: 1 1 240px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.aie-app-field--full {
	flex-basis: 100%;
}

.aie-app-field label {
	font-size: 13px;
	font-weight: 600;
	color: #15141C;
}

.aie-req {
	color: #7C2138;
}

.aie-app-field input,
.aie-app-field select,
.aie-app-field textarea {
	font-family: inherit;
	font-size: 14px;
	padding: 11px 14px;
	border: 1px solid rgba(21, 20, 28, 0.18);
	border-radius: 10px;
	background: #FFFFFF;
	color: #15141C;
	width: 100%;
	box-sizing: border-box;
}

.aie-app-field input:focus,
.aie-app-field select:focus,
.aie-app-field textarea:focus {
	outline: none;
	border-color: #A97425;
	box-shadow: 0 0 0 3px rgba(169, 116, 37, 0.15);
}

.aie-app-field textarea {
	resize: vertical;
}

.aie-app-field input[type="file"] {
	padding: 9px 12px;
	background: #F8F7FA;
	cursor: pointer;
}

.aie-app-hint {
	font-size: 12px;
	color: #57536A;
	margin: 2px 0 0;
}

.aie-app-floorplan-slot {
	margin-top: 12px;
	padding: 18px;
	background: #F8F7FA;
	border-radius: 14px;
}

.aie-app-stall-chosen {
	margin: 10px 0 0;
	font-size: 13px;
	font-weight: 700;
	color: #2F7A57;
}

.aie-app-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.aie-app-submit {
	display: inline-block;
	background: #15141C;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 13px;
	border: none;
	border-radius: 999px;
	padding: 14px 32px;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.aie-app-submit:hover {
	transform: translateY(-2px);
}

.aie-app-submit:disabled {
	opacity: 0.6;
	cursor: default;
	transform: none;
}

.aie-app-notice {
	font-size: 13px;
	margin: 4px 0 14px;
	min-height: 1em;
}

.aie-app-notice.aie-app-notice--success {
	color: #2F7A57;
	font-weight: 600;
}

.aie-app-notice.aie-app-notice--error {
	color: #7C2138;
	font-weight: 600;
}

.aie-app-form.aie-app-submitted .aie-app-form-el > *:not(.aie-app-notice) {
	display: none;
}

/* Login gate + "My Applications" dashboard */

.aie-app-login-gate {
	background: #F8F7FA;
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
}

.aie-app-login-gate p {
	color: #15141C;
	font-size: 15px;
	margin: 0 0 18px;
}

.aie-my-apps {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.aie-my-app-card {
	background: #FFFFFF;
	border: 1px solid rgba(21, 20, 28, 0.1);
	border-radius: 16px;
	padding: 24px;
}

.aie-my-app-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.aie-my-app-head h3 {
	margin: 0;
	font-size: 18px;
	color: #15141C;
}

.aie-my-app-event {
	margin: 4px 0 0;
	font-size: 13px;
	color: #57536A;
}

.aie-status-badge {
	display: inline-block;
	padding: 4px 14px;
	border-radius: 999px;
	color: #FFFFFF;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.aie-my-app-msg {
	font-size: 14px;
	margin: 0 0 14px;
}

.aie-my-app-msg--approved {
	color: #2F7A57;
	font-weight: 600;
}

.aie-my-app-msg--rejected {
	color: #7C2138;
}

.aie-my-app-msg--pending {
	color: #57536A;
}
