.login-form {
	background-color: #fff;
	width: 100%;
	padding: 4% 4% !important;
	border: none !important;
	border-radius: 10px;
}

.login-form h2 {
	text-align: center;
}

.login-form .required {
	color: red;
	font-weight: 700;
	display: inline-block !important;
}

.otp-success {
	text-align: center;
	background: green;
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
	padding: 0.75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
	margin-top: 10px;
}

.login-form #email,
.login-form #otp {
	border: 1px solid var(--ast-border-color);
	border-radius: 5px;
	background-color: #fff !important;
	padding: 0.5em 0.5em 0.5em 40px !important;
	box-shadow: none;
	color: #666;
	height: auto;
	box-shadow: none !important;
	box-sizing: border-box;
	transition: all 0.2s linear;
	width: 100%;
}

.login-form #email:focus-visible,
.login-form #otp:focus-visible {
	outline: none;
}

.rol-email-wrap,
.rol-otp-wrap {
	padding: 3px;
	margin: 0 0 6px;
}

.rol-email-wrap label,
.rol-otp-wrap label {
	margin-bottom: 0.5em;
	font-weight: 400;
	line-height: 2;
	font-size: 0.9rem;
	display: block;
}

.rol-email-wrap .rol-email-error,
.rol-otp-wrap .rol-otp-error {
	color: red;
}

.back-to-login {
	text-align: center;
	font-size: 15px;
}

#spinnerIcon {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #ccc;
	border-top-color: #333;
	animation: spinnerAnimation 0.8s linear infinite;
}

@keyframes spinnerAnimation {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

@media (min-width: 922px) {
	.woocommerce-account .login-form {
		max-width: 500px;
		margin: 0 auto !important;
	}
}
