/* Login & Register */
.ns_form-ajax .ns_form-row-error,
.ns_form-ajax .ns_form-button-submit .ns_form-spinner,
.ns_form-ajax .ns_form-button-submit .ns_form-check-ok{
	display: none;
}

.ns_form-ajax.error .ns_form-row-error{
	display: block;
}

.ns_form-ajax .ns_form-button-submit .ns_form-spinner,
.ns_form-ajax .ns_form-button-submit .ns_form-check-ok{
	position: absolute;
	width: 48px;
	height: 48px;
	top: 50%;
	left: 50%;
	margin-left: -24px;
	margin-top: -24px;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}

.ns_form-ajax .ns_form-button-submit .ns_form-spinner{
	animation: full-rotation .6s linear infinite;
}

.ns_form-ajax .ns_form-spinner > span{
	width: 18px;
	height: 18px;
	border-top: 2px solid var(--hipnos-color-neutral-5);
	border-bottom: 2px solid var(--hipnos-color-neutral-5);
	border-left: 2px solid var(--hipnos-color-neutral-5);
	border-top: none;
	border-radius: 50%;
}

.ns_form-ajax.ok .ns_form-button-submit,
.ns_form-ajax.processing .ns_form-button-submit{
	pointer-events: none;
}

.ns_form-ajax.ok .ns_form-button-submit .ns_form-check-ok,
.ns_form-ajax.processing .ns_form-button-submit .ns_form-spinner{
	display: flex;
}

.ns_form-ajax.ok .ns_form-button-submit > span:first-child,
.ns_form-ajax.processing .ns_form-button-submit > span:first-child{
	visibility: hidden;
	opacity: 0;
}

@keyframes full-rotation{
	100% {
		transform: rotate(360deg);
	}
}
