#ajax-registration-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

#ajax-registration-form .error {
	font-size: 0.85rem;
	color: red;
	margin-top: 5px;
	margin-bottom: 0;
}
#ajax-registration-form .login-link {
    text-align: center;
    margin-top: 15px;
}
.page-id-16 .site-main .container {
	display: block;
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.page-id-16 .breadcrumb{
    margin-bottom:0;
}
#ajax-registration-form button {
	cursor: pointer;
	padding: 10px 28px 10px 28px;
	background-color: var( --e-global-color-accent );
	color: #fff;
	border-radius: 4px;
	font-size: 18px;
	font-weight: 700;
	border-radius: 4rem;
	border: none;
	text-transform: uppercase;
    margin: 0px auto;
}
#ajax-registration-form .form-group::before {
	content: '';
	position: relative;
	top: 33px;
	left: 1rem;
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1rem;
	color: #aaa;
	z-index: 2;
}
#ajax-registration-form label {
	font-size: 16px;
}
#ajax-registration-form .form-group:nth-child(2)::before {
	content: "\f007";
}
#ajax-registration-form .form-group:nth-child(3)::before {
	content: "\f0e0";
}
#ajax-registration-form .form-group:nth-child(4)::before {
	content: '\f023';
}
#ajax-registration-form .toggle-password {
	position: relative;
	top: -22px;
	right: 20px;
	transform: translateY(-50%);
	cursor: pointer;
	color: #999;
	font-size: 1rem;
	float: right;
}
/* Loader Overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
  z-index: 9999;
  display: none;
}

/* Loader Spinner */
.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #E4AD52;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

/* Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
