/**
 * NeoGrow setup wizard.
 *
 * The wizard renders its own isolated full-screen document, so these rules
 * intentionally style bare elements.
 */

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
	background: #f0f0f1;
	color: #3c434a;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.neo-full-screen-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
}

.neo-wizard-container {
	background: #fff;
	width: 100%;
	max-width: 540px;
	padding: 40px;
	border: 1px solid #c3c4c7;
	box-shadow: 0 1px 1px rgba( 0, 0, 0, 0.04 );
	text-align: center;
	position: relative;
}

.neo-step {
	display: none;
	animation: neo-fade-in 0.3s ease-in-out;
}

.neo-step.active {
	display: block;
}

@keyframes neo-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.neo-step {
		animation: none;
	}
}

h1 {
	font-size: 2em;
	font-weight: 400;
	margin: 0 0 15px;
	color: #1d2327;
}

.subhead {
	font-size: 15px;
	color: #50575e;
	margin-bottom: 30px;
}

.form-group {
	text-align: left;
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #1d2327;
}

.input-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.input-row--start {
	justify-content: flex-start;
}

.input-suffix {
	font-size: 15px;
	color: #1d1d1f;
}

.field-hint {
	font-size: 13px;
	color: #646970;
	margin: 5px 0 0;
}

.neo-logo {
	font-size: 40px;
	line-height: 1;
	margin-bottom: 10px;
}

input[type="number"] {
	width: 100px;
	padding: 0 8px;
	line-height: 2;
	min-height: 30px;
	border: 1px solid #8c8f94;
	border-radius: 3px;
	font-size: 14px;
	color: #2c3338;
	box-shadow: 0 0 0 transparent;
	transition: box-shadow 0.1s linear;
	text-align: center;
}

input[type="number"]:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	outline: 2px solid transparent;
}

.btn-primary {
	display: inline-block;
	text-decoration: none;
	line-height: 2.1538;
	min-height: 30px;
	margin: 20px 0 0 0;
	padding: 5px 24px;
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	appearance: none;
	border-radius: 3px;
	white-space: nowrap;
	box-sizing: border-box;
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary:hover {
	background: #135e96;
	border-color: #135e96;
	color: #fff;
}

.btn-primary:focus-visible {
	background: #135e96;
	border-color: #135e96;
	color: #fff;
	box-shadow: 0 0 0 1px #fff, 0 0 0 3px #2271b1;
	outline: 2px solid transparent;
}

.btn-link {
	display: block;
	margin-top: 15px;
	color: #2271b1;
	text-decoration: underline;
	font-size: 13px;
}

.btn-link:hover {
	color: #135e96;
}
