/**
 * Registration form.
 */

/*
 * The username field is hidden on signup only - it is generated from the
 * member's first name (see includes/registration.php for why). The field
 * itself stays in the DOM and stays in place on the profile edit screen,
 * where changing it is exactly what people want.
 */
.register-page .editfield.field_public-username,
#signup-form .editfield.field_public-username {
	display: none !important;
}

/* The "did you mean" line. A suggestion, so it looks like one. */
.ap-email-suggest {
	margin: 0.4rem 0 0;
	font-size: 0.8125rem;
	color: #6b6b6b;
}

.ap-email-suggest[hidden] {
	display: none;
}

.ap-email-suggest__fix {
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	font-weight: 600;
	color: #43b02a;
	text-decoration: underline;
	cursor: pointer;
}

.ap-email-suggest__fix:hover {
	color: #379123;
}
