/*!
 * Nuso Giya Registration UI — stylesheet
 * Mobile-first, green & white. Matches the Nuso Giya Login UI design
 * system (same palette/radii/shadows) and the uploaded Registration UI
 * screenshots.
 */

:root {
	--ngr-green-900: #0b2e3e;
	--ngr-green-700: #0e7c4a;
	--ngr-green-600: #128a53;
	--ngr-green-500: #17b26a;
	--ngr-green-100: #e6f7ee;
	--ngr-green-50: #f2fbf6;
	--ngr-red: #d6342c;
	--ngr-red-50: #fdeceb;
	--ngr-ink: #16211f;
	--ngr-gray-600: #667085;
	--ngr-gray-400: #98a2b3;
	--ngr-gray-300: #d0d5dd;
	--ngr-gray-200: #eaecef;
	--ngr-gray-100: #f4f6f5;
	--ngr-white: #ffffff;
	--ngr-radius-sm: 10px;
	--ngr-radius-md: 14px;
	--ngr-radius-lg: 26px;
	--ngr-shadow-sm: 0 2px 8px rgba(16, 40, 34, 0.06);
	--ngr-shadow-md: 0 8px 24px rgba(16, 40, 34, 0.10);
	--ngr-shadow-btn: 0 10px 22px rgba(14, 124, 74, 0.28);
	--ngr-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html.ngr-register-body,
body.ngr-register-body {
	margin: 0;
	padding: 0;
	background: var(--ngr-white);
}

.ngr-root {
	font-family: var(--ngr-font);
	color: var(--ngr-ink);
	background: var(--ngr-white);
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	display: flex;
	justify-content: center;
}

.ngr-root *,
.ngr-root *::before,
.ngr-root *::after {
	box-sizing: border-box;
}

.ngr-root button {
	font-family: inherit;
	cursor: pointer;
}

.ngr-root a {
	text-decoration: none;
}

/* ==========================================================================
   Shell
   ========================================================================== */

.ngr-shell {
	width: 100%;
	max-width: 480px;
	min-height: 100vh;
	background: var(--ngr-white);
	display: flex;
	flex-direction: column;
}

/* ==========================================================================
   Header
   ========================================================================== */

.ngr-header {
	background: linear-gradient(180deg, var(--ngr-green-600) 0%, var(--ngr-green-700) 100%);
	padding: max(18px, env(safe-area-inset-top)) 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: var(--ngr-shadow-sm);
	position: sticky;
	top: 0;
	z-index: 5;
}

.ngr-back {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ngr-white);
	flex-shrink: 0;
	border-radius: 50%;
	border: none;
	background: none;
	transition: background 0.15s ease;
}

.ngr-back:hover,
.ngr-back:focus-visible {
	background: rgba(255, 255, 255, 0.15);
}

.ngr-back svg {
	width: 22px;
	height: 22px;
}

.ngr-header-title {
	flex: 1;
	text-align: center;
	margin: 0;
	color: var(--ngr-white);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.2px;
}

.ngr-header-spacer {
	width: 30px;
	flex-shrink: 0;
}

/* ==========================================================================
   Content / Steps
   ========================================================================== */

.ngr-content {
	flex: 1;
	padding: 28px 22px 40px;
	display: flex;
	flex-direction: column;
}

.ngr-step {
	display: none;
	flex-direction: column;
	animation: ngr-fade-in 0.25s ease;
}

.ngr-step.is-active {
	display: flex;
}

@keyframes ngr-fade-in {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ngr-logo-block {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 6px 0 30px;
}

.ngr-logo-mark {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.ngr-logo-mark svg {
	width: 100%;
	height: 100%;
}

.ngr-logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.ngr-logo-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--ngr-green-900);
	letter-spacing: -0.2px;
}

.ngr-logo-tagline {
	font-size: 12px;
	font-weight: 600;
	color: var(--ngr-green-600);
}

.ngr-title {
	margin: 0 0 6px;
	text-align: center;
	font-size: 24px;
	font-weight: 800;
	color: var(--ngr-green-900);
}

.ngr-subtitle {
	margin: 0 0 22px;
	text-align: center;
	font-size: 14px;
	color: var(--ngr-gray-600);
}

/* ==========================================================================
   Alert / toast
   ========================================================================== */

.ngr-alert {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	background: var(--ngr-red-50);
	color: var(--ngr-red);
	border: 1px solid rgba(214, 52, 44, 0.18);
	border-radius: var(--ngr-radius-sm);
	padding: 12px 14px;
	font-size: 13.5px;
	font-weight: 600;
	margin-bottom: 18px;
	animation: ngr-alert-in 0.25s ease;
}

.ngr-alert.ngr-alert-info {
	background: var(--ngr-green-50);
	color: var(--ngr-green-700);
	border-color: rgba(14, 124, 74, 0.18);
}

.ngr-alert[hidden] {
	display: none;
}

.ngr-alert svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 1px;
}

@keyframes ngr-alert-in {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ngr-toast {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%) translateY(12px);
	background: var(--ngr-green-900);
	color: var(--ngr-white);
	font-size: 13.5px;
	font-weight: 600;
	padding: 12px 20px;
	border-radius: 999px;
	box-shadow: var(--ngr-shadow-md);
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 999;
	pointer-events: none;
	max-width: 88%;
	text-align: center;
}

.ngr-toast.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.ngr-toast[hidden] {
	display: none;
}

/* ==========================================================================
   Account type cards
   ========================================================================== */

.ngr-type-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
}

.ngr-type-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border: 1.5px solid var(--ngr-gray-200);
	border-radius: var(--ngr-radius-md);
	background: var(--ngr-white);
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.ngr-type-card input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.ngr-type-card.is-selected {
	border-color: var(--ngr-green-600);
	background: var(--ngr-green-50);
	box-shadow: 0 0 0 3px var(--ngr-green-100);
}

.ngr-type-icon {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--ngr-green-100);
	color: var(--ngr-green-700);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ngr-type-icon svg {
	width: 22px;
	height: 22px;
}

.ngr-type-copy {
	flex: 1;
	min-width: 0;
}

.ngr-type-copy strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--ngr-green-900);
	margin-bottom: 2px;
}

.ngr-type-copy span {
	display: block;
	font-size: 12.5px;
	color: var(--ngr-gray-600);
}

.ngr-type-radio {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid var(--ngr-gray-300);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.15s ease;
}

.ngr-type-radio::after {
	content: "";
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--ngr-green-600);
	opacity: 0;
	transition: opacity 0.15s ease;
}

.ngr-type-card.is-selected .ngr-type-radio {
	border-color: var(--ngr-green-600);
}

.ngr-type-card.is-selected .ngr-type-radio::after {
	opacity: 1;
}

/* ==========================================================================
   Form
   ========================================================================== */

.ngr-form {
	display: flex;
	flex-direction: column;
}

.ngr-field-group {
	margin-bottom: 18px;
}

.ngr-field-group label {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ngr-green-900);
	margin-bottom: 8px;
}

.ngr-label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ngr-label-hint {
	font-size: 12px;
	font-weight: 700;
	color: var(--ngr-green-600);
}

.ngr-label-hint:hover {
	color: var(--ngr-green-700);
	text-decoration: underline;
}

.ngr-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	border: 1.5px solid var(--ngr-gray-200);
	border-radius: var(--ngr-radius-md);
	background: var(--ngr-white);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ngr-input-wrap:focus-within {
	border-color: var(--ngr-green-600);
	box-shadow: 0 0 0 3px var(--ngr-green-100);
}

.ngr-input-wrap.is-invalid {
	border-color: var(--ngr-red);
}

.ngr-input-wrap.is-invalid:focus-within {
	box-shadow: 0 0 0 3px var(--ngr-red-50);
}

.ngr-input-wrap.is-valid {
	border-color: var(--ngr-green-600);
}

.ngr-input-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	flex-shrink: 0;
	color: var(--ngr-gray-400);
}

.ngr-input-icon svg {
	width: 18px;
	height: 18px;
}

.ngr-input {
	flex: 1;
	min-width: 0;
	border: none;
	outline: none;
	background: transparent;
	padding: 15px 14px 15px 0;
	font-size: 15px;
	color: var(--ngr-ink);
	font-family: inherit;
}

.ngr-input::placeholder {
	color: var(--ngr-gray-400);
}

.ngr-input-status {
	width: 30px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ngr-green-600);
}

.ngr-input-status svg {
	width: 16px;
	height: 16px;
	display: none;
}

.ngr-input-wrap.is-valid .ngr-icon-check {
	display: block;
}

.ngr-input-status .ngr-spinner {
	display: none;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid var(--ngr-gray-200);
	border-top-color: var(--ngr-green-600);
	animation: ngr-spin 0.7s linear infinite;
}

.ngr-input-wrap.is-checking .ngr-spinner {
	display: block;
}

.ngr-toggle-password {
	background: none;
	border: none;
	width: 44px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ngr-gray-400);
	padding: 0;
}

.ngr-toggle-password svg {
	width: 19px;
	height: 19px;
}

.ngr-toggle-password:hover,
.ngr-toggle-password:focus-visible {
	color: var(--ngr-green-600);
}

.ngr-field-error {
	display: block;
	min-height: 0;
	font-size: 12.5px;
	color: var(--ngr-red);
	font-weight: 600;
	margin-top: 6px;
}

.ngr-field-error:empty {
	display: none;
}

/* ==========================================================================
   Checkbox
   ========================================================================== */

.ngr-checkbox-row {
	margin: 4px 0 26px;
}

.ngr-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	cursor: pointer;
	font-size: 13.5px;
	color: var(--ngr-ink);
	font-weight: 500;
	user-select: none;
}

.ngr-checkbox input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.ngr-checkbox-box {
	width: 19px;
	height: 19px;
	border-radius: 5px;
	background: var(--ngr-gray-200);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
	transition: background 0.15s ease;
}

.ngr-checkbox-box svg {
	width: 11px;
	height: 9px;
	opacity: 0;
	transition: opacity 0.1s ease;
}

.ngr-checkbox input:checked + .ngr-checkbox-box {
	background: var(--ngr-green-600);
}

.ngr-checkbox input:checked + .ngr-checkbox-box svg {
	opacity: 1;
}

.ngr-checkbox input:focus-visible + .ngr-checkbox-box {
	box-shadow: 0 0 0 3px var(--ngr-green-100);
}

.ngr-checkbox-label a {
	color: var(--ngr-green-600);
	font-weight: 700;
}

.ngr-checkbox-label a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.ngr-btn-primary {
	position: relative;
	border: none;
	background: linear-gradient(180deg, var(--ngr-green-600) 0%, var(--ngr-green-700) 100%);
	color: var(--ngr-white);
	font-size: 16px;
	font-weight: 700;
	padding: 16px;
	border-radius: var(--ngr-radius-lg);
	box-shadow: var(--ngr-shadow-btn);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.1s ease, box-shadow 0.15s ease, opacity 0.15s ease;
	margin-top: auto;
}

.ngr-btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(14, 124, 74, 0.34);
}

.ngr-btn-primary:active {
	transform: translateY(0);
}

.ngr-btn-primary:disabled {
	opacity: 0.6;
	cursor: default;
	transform: none;
}

.ngr-btn-spinner {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2.5px solid rgba(255, 255, 255, 0.4);
	border-top-color: var(--ngr-white);
	margin-left: 10px;
	display: none;
	animation: ngr-spin 0.7s linear infinite;
}

.ngr-btn-primary.is-loading .ngr-btn-spinner {
	display: inline-block;
}

.ngr-btn-primary.is-loading .ngr-btn-text {
	opacity: 0.9;
}

@keyframes ngr-spin {
	to {
		transform: rotate(360deg);
	}
}

.ngr-login-row {
	text-align: center;
	margin: 22px 0 0;
	font-size: 13.5px;
	color: var(--ngr-gray-600);
}

.ngr-link {
	color: var(--ngr-green-600);
	font-weight: 700;
}

.ngr-link:hover {
	color: var(--ngr-green-700);
	text-decoration: underline;
}

/* ==========================================================================
   OTP step
   ========================================================================== */

.ngr-otp-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--ngr-green-100);
	color: var(--ngr-green-700);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 6px auto 20px;
}

.ngr-otp-icon svg {
	width: 30px;
	height: 30px;
}

.ngr-otp-email {
	font-weight: 700;
	color: var(--ngr-green-900);
}

.ngr-otp-boxes {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 26px 0 20px;
}

.ngr-otp-box {
	width: 44px;
	height: 54px;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	color: var(--ngr-ink);
	border: 1.5px solid var(--ngr-gray-200);
	border-radius: var(--ngr-radius-sm);
	background: var(--ngr-white);
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ngr-otp-box:focus {
	border-color: var(--ngr-green-600);
	box-shadow: 0 0 0 3px var(--ngr-green-100);
}

.ngr-otp-box.is-invalid {
	border-color: var(--ngr-red);
}

.ngr-otp-meta {
	text-align: center;
	margin-bottom: 24px;
}

.ngr-otp-resend {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ngr-green-600);
	background: none;
	border: none;
	padding: 0;
	margin-bottom: 6px;
}

.ngr-otp-resend:disabled {
	color: var(--ngr-gray-400);
	cursor: default;
}

.ngr-otp-expiry {
	font-size: 12.5px;
	color: var(--ngr-gray-600);
}

/* ==========================================================================
   Success step
   ========================================================================== */

.ngr-success {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px 0;
}

.ngr-success-icon {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: var(--ngr-green-100);
	color: var(--ngr-green-600);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 26px;
	animation: ngr-pop-in 0.35s ease;
}

.ngr-success-icon svg {
	width: 48px;
	height: 48px;
}

@keyframes ngr-pop-in {
	from {
		opacity: 0;
		transform: scale(0.7);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.ngr-success-eyebrow {
	font-size: 13px;
	font-weight: 700;
	color: var(--ngr-green-600);
	text-transform: uppercase;
	letter-spacing: 0.4px;
	margin-bottom: 8px;
}

.ngr-success-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--ngr-green-900);
	margin: 0 0 10px;
}

.ngr-success-copy {
	font-size: 14px;
	color: var(--ngr-gray-600);
	margin: 0 0 6px;
	max-width: 320px;
}

.ngr-success .ngr-btn-primary {
	margin-top: 32px;
	width: 100%;
}

/* ==========================================================================
   Small screens
   ========================================================================== */

@media (max-width: 360px) {
	.ngr-content {
		padding: 24px 18px 32px;
	}

	.ngr-title {
		font-size: 21px;
	}

	.ngr-otp-box {
		width: 38px;
		height: 48px;
		font-size: 19px;
	}
}
.ngr-btn-text{
    color:#ffffff !important;
    opacity:1 !important;
    visibility:visible !important;
    display:inline !important;
    -webkit-text-fill-color:#ffffff !important;
    text-indent:0 !important;
    font-size:16px !important;
}