/* LR Secure Document Upload Portal
   ================================
   The Lemon Reps brand: navy #1a2035, gold #f5c400, Montserrat.
*/

.lr-upload {
	--lru-navy: #1a2035;
	--lru-gold: #f5c400;
	--lru-gold-dark: #d9ad00;
	--lru-bg: #ffffff;
	--lru-panel: #f6f7fa;
	--lru-border: #dde1ea;
	--lru-text: #1a2035;
	--lru-muted: #626a7d;

	max-width: 680px;
	margin: 0 auto;
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--lru-text);
	box-sizing: border-box;
}
.lr-upload *, .lr-upload *::before, .lr-upload *::after { box-sizing: border-box; }

.lru-inner {
	background: var(--lru-bg);
	border: 1px solid var(--lru-border);
	border-radius: 14px;
	padding: 30px;
	box-shadow: 0 8px 30px rgba(26, 32, 53, 0.08);
}

.lru-header { margin-bottom: 18px; }
.lru-eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lru-gold-dark);
	margin-bottom: 8px;
}
.lru-title { font-size: 1.6rem; margin: 0 0 8px; color: var(--lru-navy); }
.lru-sub { margin: 0; color: var(--lru-muted); font-size: 0.95rem; line-height: 1.5; }

.lru-progress {
	height: 6px;
	background: var(--lru-border);
	border-radius: 100px;
	overflow: hidden;
	margin: 18px 0 24px;
}
.lru-progress-bar {
	height: 100%;
	width: 33%;
	background: var(--lru-gold);
	transition: width 0.3s ease;
}

.lru-hidden { display: none !important; }
.lru-step { animation: lruFade 0.25s ease; }
@keyframes lruFade {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.lru-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
}
.lru-nav .lru-btn { width: auto; flex: 0 0 auto; padding: 14px 28px; }
.lru-back {
	background: none;
	border: none;
	color: var(--lru-muted);
	cursor: pointer;
	font-size: 0.9rem;
	font-family: inherit;
	padding: 8px 4px;
}
.lru-back:hover { color: var(--lru-text); }

.lru-section { margin: 22px 0; }
.lru-step-label {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--lru-navy);
	margin-bottom: 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--lru-gold);
	display: inline-block;
}

.lru-upload-row {
	background: var(--lru-panel);
	border: 1px solid var(--lru-border);
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 12px;
}
.lru-upload-label { font-weight: 600; font-size: 0.95rem; margin-bottom: 10px; }

.lru-upload-btn {
	display: inline-block;
	background: var(--lru-navy);
	color: #fff;
	border-radius: 8px;
	padding: 11px 18px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease;
}
.lru-upload-btn:hover { background: #262f4d; }
.lru-upload-btn input[type="file"] {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	opacity: 0;
	clip: rect(0 0 0 0);
}
.lru-file-name {
	margin-top: 8px;
	font-size: 0.85rem;
	color: var(--lru-muted);
	word-break: break-word;
}
.lru-file-name.has-file { color: #1c7c3a; font-weight: 600; }

.lru-partial {
	font-size: 0.85rem;
	color: var(--lru-muted);
	font-style: italic;
	margin: 10px 2px 0;
	line-height: 1.5;
}

.lru-field { margin-bottom: 14px; }
.lru-field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; }
.lru-field input {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--lru-border);
	border-radius: 9px;
	font-size: 1rem;
	font-family: inherit;
	color: var(--lru-text);
}
.lru-field input:focus { outline: none; border-color: var(--lru-navy); }

.lru-notice {
	border-radius: 10px;
	padding: 16px 18px;
	margin: 18px 0;
	font-size: 0.82rem;
	line-height: 1.55;
}
.lru-notice strong { display: block; margin-bottom: 8px; font-size: 0.85rem; letter-spacing: 0.02em; }
.lru-notice p { margin: 0 0 8px; }
.lru-notice p:last-child { margin-bottom: 0; }
.lru-notice ul, .lru-notice ol { margin: 8px 0; padding-left: 20px; }
.lru-notice li { margin-bottom: 5px; }

.lru-notice-secure { background: #eef4fa; border: 1px solid #cfe0f0; color: #223a52; }
.lru-notice-legal { background: #fff8e6; border: 1.5px solid #e6cf7a; color: #5c4a00; }
.lru-notice-retention { background: var(--lru-panel); border: 1px solid var(--lru-border); color: var(--lru-muted); }

.lru-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.83rem;
	color: var(--lru-text);
	line-height: 1.5;
	margin: 18px 0;
	cursor: pointer;
}
.lru-consent input[type="checkbox"] {
	flex: 0 0 auto;
	width: 18px; height: 18px;
	margin: 0;
	position: relative;
	top: 1px;
	cursor: pointer;
}
.lru-consent span { flex: 1 1 auto; display: block; }

.lru-btn {
	display: block;
	width: 100%;
	background: var(--lru-gold);
	color: var(--lru-navy);
	border: none;
	border-radius: 10px;
	padding: 16px;
	font-size: 1.05rem;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.15s ease;
}
.lru-btn:hover { background: var(--lru-gold-dark); }
.lru-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.lru-error { color: #c0281e; font-size: 0.88rem; margin-top: 10px; min-height: 1em; text-align: center; }

.lru-message { text-align: center; padding: 30px 10px; }
.lru-message .lru-check {
	width: 56px; height: 56px;
	background: #1c7c3a;
	color: #fff;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.8rem;
	margin: 0 auto 16px;
}
.lru-message h3 { color: var(--lru-navy); margin: 0 0 8px; font-size: 1.3rem; }
.lru-message p { color: var(--lru-muted); margin: 0; line-height: 1.55; }

@media (max-width: 520px) {
	.lru-inner { padding: 20px; }
	.lru-title { font-size: 1.35rem; }
}
