/* Direct Landlord Services — auth screen (login / register).
   Matches the dark forest "Sign In" card design. */

.dls-auth {
	--dls-bg-1: #0a1410;
	--dls-bg-2: #0f1d16;
	--dls-card: rgba(20, 38, 30, 0.65);
	--dls-card-border: rgba(255, 255, 255, 0.06);
	--dls-input-bg: rgba(255, 255, 255, 0.04);
	--dls-input-border: rgba(255, 255, 255, 0.10);
	--dls-green-500: #2e9e6b;
	--dls-green-400: #34b97d;
	--dls-green-300: #4ade80;
	--dls-text: #f2f6f4;
	--dls-muted: #93a89d;
	--dls-placeholder: #6f857b;

	box-sizing: border-box;
	min-height: 100vh;
	margin: 0;
	padding: 48px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(1200px 600px at 50% -10%, var(--dls-bg-2), var(--dls-bg-1)),
		var(--dls-bg-1);
	color: var(--dls-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.dls-auth *, .dls-auth *::before, .dls-auth *::after { box-sizing: border-box; }

.dls-auth-inner {
	width: 100%;
	max-width: 460px;
	margin: 0 auto;
}

.dls-auth-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--dls-text);
	text-decoration: none;
	font-size: 15px;
	margin-bottom: 22px;
	opacity: 0.9;
}
.dls-auth-back:hover { opacity: 1; }
.dls-auth-back span { font-size: 16px; }

.dls-auth-card {
	background: var(--dls-card);
	border: 1px solid var(--dls-card-border);
	border-radius: 18px;
	padding: 34px 36px 30px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(6px);
}

.dls-auth-logo {
	width: 52px;
	height: 52px;
	margin: 0 auto 18px;
	border-radius: 14px;
	background: linear-gradient(160deg, var(--dls-green-400), var(--dls-green-500));
	color: #fff;
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(46, 158, 107, 0.35);
}

.dls-auth-title {
	text-align: center;
	font-size: 30px;
	font-weight: 800;
	margin: 0 0 6px;
	color: #fff;
}
.dls-auth-sub {
	text-align: center;
	color: var(--dls-muted);
	font-size: 15px;
	margin: 0 0 26px;
}

.dls-auth-notice {
	border-radius: 10px;
	padding: 11px 14px;
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 1.4;
}
.dls-auth-notice.error {
	background: rgba(178, 59, 59, 0.18);
	border: 1px solid rgba(220, 90, 90, 0.35);
	color: #ffb9b9;
}
.dls-auth-notice.success {
	background: rgba(46, 158, 107, 0.18);
	border: 1px solid rgba(74, 222, 128, 0.35);
	color: #b6f3d2;
}

.dls-auth-form { display: block; }

.dls-auth-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #e7efea;
	margin: 16px 0 8px;
}
.dls-auth-form .dls-auth-label:first-child,
.dls-auth-form > .dls-auth-label:first-of-type { margin-top: 0; }

.dls-auth-input {
	width: 100%;
	background: var(--dls-input-bg);
	border: 1px solid var(--dls-input-border);
	border-radius: 10px;
	padding: 13px 14px;
	color: var(--dls-text);
	font-size: 15px;
	outline: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.dls-auth-input::placeholder { color: var(--dls-placeholder); }
.dls-auth-input:focus {
	border-color: var(--dls-green-400);
	box-shadow: 0 0 0 3px rgba(52, 185, 125, 0.18);
}

.dls-auth-pw { position: relative; }
.dls-auth-pw .dls-auth-input { padding-right: 44px; }
.dls-auth-pw-toggle {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--dls-muted);
	padding: 8px;
	line-height: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.dls-auth-pw-toggle svg { display: block; }
.dls-auth-pw-toggle:hover { color: var(--dls-text); }

.dls-auth-btn {
	display: block;
	width: 100%;
	margin-top: 22px;
	border: none;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	background: linear-gradient(90deg, #1c7a4f, #34b97d);
	transition: filter .15s ease, transform .05s ease;
}
.dls-auth-btn:hover { filter: brightness(1.06); }
.dls-auth-btn:active { transform: translateY(1px); }
.dls-auth-btn-link { text-decoration: none; text-align: center; }

.dls-auth-switch {
	text-align: center;
	color: var(--dls-muted);
	font-size: 14px;
	margin: 22px 0 0;
}
.dls-auth-switch a {
	color: var(--dls-green-300);
	font-weight: 600;
	text-decoration: none;
}
.dls-auth-switch a:hover { text-decoration: underline; }

@media ( max-width: 520px ) {
	.dls-auth-card { padding: 28px 22px 24px; }
	.dls-auth-title { font-size: 26px; }
}

/* ---------------------------------------------------------------------
 * Create Account — light contact-form style
 * ------------------------------------------------------------------- */
.dls-reg {
	--reg-green-700: #1c7a4f;
	--reg-green-500: #2e9e6b;
	--reg-green-400: #34b97d;
	--reg-ink: #14211b;
	--reg-muted: #6b7a73;
	--reg-canvas: #f4f6f5;
	--reg-card: #ffffff;
	--reg-line: #e2e8e4;
	--reg-input-bg: #f3f6f4;

	box-sizing: border-box;
	background: var(--reg-canvas);
	color: var(--reg-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	border-radius: 14px;
	overflow: hidden;
}
.dls-reg *, .dls-reg *::before, .dls-reg *::after { box-sizing: border-box; }

/* Hero band */
.dls-reg-hero {
	background: linear-gradient(160deg, #103b2b, #1c6b48);
	color: #fff;
	text-align: center;
	padding: 46px 24px 56px;
}
.dls-reg-eyebrow {
	display: inline-block;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #cdeeda;
	font-size: 13px;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}
.dls-reg-title { font-size: 40px; font-weight: 800; margin: 0 0 12px; }
.dls-reg-subtitle { color: #c8ddd2; font-size: 16px; margin: 0 auto; max-width: 540px; }

/* Body / layout */
.dls-reg-body { padding: 0 24px 48px; margin-top: -28px; }
.dls-reg-grid {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 32px;
	max-width: 1040px;
	margin: 0 auto;
	align-items: start;
}

/* Aside */
.dls-reg-aside { padding-top: 56px; }
.dls-reg-aside-title { font-size: 22px; font-weight: 800; margin: 0 0 12px; }
.dls-reg-aside-lead { color: var(--reg-muted); font-size: 15px; margin: 0 0 26px; line-height: 1.5; }
.dls-reg-contact { display: flex; gap: 14px; margin-bottom: 22px; }
.dls-reg-ic {
	flex: 0 0 auto;
	width: 42px; height: 42px;
	border-radius: 10px;
	background: linear-gradient(160deg, var(--reg-green-400), var(--reg-green-500));
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px;
}
.dls-reg-contact strong { display: block; font-size: 15px; margin-bottom: 2px; }
.dls-reg-contact div > div { font-size: 14px; color: var(--reg-ink); }
.dls-reg-contact small { display: block; color: var(--reg-muted); font-size: 12px; margin-top: 2px; line-height: 1.4; }

/* Card */
.dls-reg-card {
	background: var(--reg-card);
	border: 1px solid var(--reg-line);
	border-radius: 16px;
	padding: 30px 32px;
	box-shadow: 0 18px 40px rgba(16, 40, 30, 0.08);
}
.dls-reg-card-title { font-size: 22px; font-weight: 800; margin: 0 0 22px; }

.dls-reg-notice {
	border-radius: 10px;
	padding: 11px 14px;
	font-size: 14px;
	margin-bottom: 18px;
	line-height: 1.4;
}
.dls-reg-notice.error { background: #fbe3e3; border: 1px solid #f0b4b4; color: #9a2b2b; }
.dls-reg-notice.success { background: #def3e7; border: 1px solid #aadcc1; color: #1c7a4f; }

.dls-reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dls-reg-field { margin-bottom: 18px; }
.dls-reg-field label { display: block; font-size: 14px; font-weight: 600; color: var(--reg-ink); margin-bottom: 7px; }
.dls-reg-req { color: #2e9e6b; }

.dls-reg-field input,
.dls-reg-field textarea {
	width: 100%;
	background: var(--reg-input-bg);
	border: 1px solid var(--reg-line);
	border-radius: 9px;
	padding: 12px 13px;
	font-size: 15px;
	color: var(--reg-ink);
	outline: none;
	transition: border-color .15s ease, box-shadow .15s ease;
	font-family: inherit;
}
.dls-reg-field textarea { resize: vertical; min-height: 120px; }
.dls-reg-field input::placeholder,
.dls-reg-field textarea::placeholder { color: #97a69e; }
.dls-reg-field input:focus,
.dls-reg-field textarea:focus {
	border-color: var(--reg-green-400);
	box-shadow: 0 0 0 3px rgba(52, 185, 125, 0.16);
	background: #fff;
}

.dls-reg-btn {
	display: block;
	width: 100%;
	margin-top: 6px;
	border: none;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	background: linear-gradient(90deg, var(--reg-green-700), var(--reg-green-400));
	transition: filter .15s ease, transform .05s ease;
}
.dls-reg-btn:hover { filter: brightness(1.06); }
.dls-reg-btn:active { transform: translateY(1px); }

.dls-reg-hint { color: var(--reg-muted); font-size: 13px; margin: 12px 0 0; text-align: center; line-height: 1.5; }
.dls-reg-switch { text-align: center; color: var(--reg-muted); font-size: 14px; margin: 18px 0 0; }
.dls-reg-switch a { color: var(--reg-green-700); font-weight: 600; text-decoration: none; }
.dls-reg-switch a:hover { text-decoration: underline; }

@media ( max-width: 860px ) {
	.dls-reg-grid { grid-template-columns: 1fr; gap: 8px; }
	.dls-reg-aside { padding-top: 36px; }
	.dls-reg-title { font-size: 30px; }
}
@media ( max-width: 520px ) {
	.dls-reg-row { grid-template-columns: 1fr; }
	.dls-reg-card { padding: 22px; }
}
