/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.register-form {
	display: flex;
	flex-direction: column;
	margin: 30px auto 0;
	max-width: 500px;
	row-gap: 10px;
	width: 100%;
}

.register-form-group {
	column-gap: 10px;
	display: flex;
	justify-content: center;
}

.register-email-group {
	flex-grow: 1;
}

.register-email {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 2px;
	color: #333;
	font-size: 16px;
	padding: 5px 10px;
	width: 100%;
}

.register-form-submit {
	align-items: flex-start;
	display: flex;
}

.alert-message {
	border-radius: 2px;
	display: none;
	font-size: 14px;
	line-height: 1.3;
	margin-bottom: 0;
	padding: 5px 10px;
	text-align: left;
}

.alert-message.is-visible,
.alert-message:not(:empty) {
	display: block;
}
