.new-password-form {
	max-width: 760px;
	margin: 0 auto 4rem;
	padding: 0 1.5rem;
}

.reset-card {
	/*background: var(--color-surface-panel);*/
	border: 1px solid var(--color-border-light);
	border-radius: 18px;
	padding: 2.5rem 2.25rem;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.reset-card h1 {
	margin: 0 0 0.75rem;
	font-size: 2rem;
	color: var(--color-text-strong);
}

.reset-intro {
	margin: 0 0 1.5rem;
	color: var(--color-text-soft);
	font-size: 1.05rem;
}

.reset-steps {
	margin: 0 0 1.75rem 1.5rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

.reset-steps li {
	margin-bottom: 0.5rem;
}

.reset-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.reset-field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.reset-field label {
	font-weight: 600;
	color: var(--color-text-strong);
}

.reset-field input[type="email"],
.reset-field input[type="password"] {
	padding: 0.75rem 0.9rem;
	border-radius: 10px;
	border: 1px solid var(--color-border);
	font-size: 1rem;
}

.reset-hint {
	font-size: 0.9rem;
	color: var(--color-text-subtle);
}

.reset-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.reset-actions button,
.reset-actions input[type="button"] {
	margin: 0;
}

.reset-message {
	margin-top: 1rem;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	background: var(--color-surface-subtle);
	color: var(--color-text-strong);
	border: 1px solid var(--color-border-subtle);
	display: none;
}

.reset-message.is-visible {
	display: block;
}

.reset-message.is-success {
	background: #eef9f1;
	border-color: #b6e4c0;
	color: #1d6a2f;
}

.reset-message.is-error {
	background: #fff1f0;
	border-color: #f2b8b5;
	color: #8a2121;
}

.reset-help {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border-subtle);
	color: var(--color-text-muted);
}

@media (max-width: 640px) {
	.reset-card {
		padding: 2rem 1.5rem;
	}

	.reset-card h1 {
		font-size: 1.6rem;
	}
}
