.login form {
    position: relative;
}

.lmn_magic_link_login {
    position: relative;
}

/* Magic Link Login Background */
.lmn_magic_link_login_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
}

/* Magic Link Form */
.lmn_magic_link_login_form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 20;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border-radius: 8px;
}

.lmn_magic_link_login_form_header {
    font-size: 16px;
    margin-bottom: 20px;
}

.lmn_magic_link_login_form_header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Active classes to show form and background */
.lmn_magic_link_login_form.active,
.lmn_magic_link_login_bg.active {
    display: block;
}

.lmn_btn:hover {
    background: #005d8f;
}

/* Close Button */
.lmn_magic_link_login_close {
    display: inline-block;
    margin-top: 15px;
    color: #0073aa;
    text-decoration: none;
    cursor: pointer;
}

.lmn_magic_link_login_close:hover {
    text-decoration: underline;
}

#lmn_email_address {
    padding: 15px;
}
#lmn_email_address,
.lmn_magic_link_login_send_link {
    display: block;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    font-size: 16px;
}

.lmn_btn {
	border: 1px solid transparent;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	/* padding: 10px 15px; */
	background-color: #1C73E7;
	color: #fff;
	cursor: pointer;
	min-height: 45px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.lmn_btn:hover, 
.lmn_btn:focus, 
.lmn_btn:active {
	opacity: 0.7;
	color: #fff;
}

.lmn_btn .svg-bg {
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px;
}

.lmn_btn.lmn_facebook_login_button {
	background-color: #4267B2;
}

.lmn_btn.lmn_magic_link_login_button {
	background-color: #000000;
}

.lmn_btn.lmn_facebook_login_button .svg-bg,
.lmn_btn.lmn_magic_link_login_button .svg-bg  {
	background-color: transparent;
}

.lmn_btn span {
	margin-left: 8px;
	font-size: 14px;
    color: #fff;
}

.lmn_btn.button-disable {
	background: #ddd;
	cursor: not-allowed;
}

#wp-login-login-me-now-buttons {
	display: flex;
	flex-direction:
	column;gap: 8px;
}

.directorist-registration-wrapper #wp-login-login-me-now-buttons {
	margin-bottom: 10px;
}

#lmn-redirect-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1px);
    background-color: RGBA(0, 0, 0, .32);;
}

#lmn-redirect-overlay-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
}

#lmn-redirect-overlay-spinner {
    content: '';
    display: block;
    margin: 20px;
    border: 9px solid RGBA(0, 0, 0, .6);
    border-top: 9px solid #fff;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px RGBA(0, 0, 0, .6), 0 0 0 1px RGBA(0, 0, 0, .6);
    width: 40px;
    height: 40px;
    animation: lmn-loader-spin 2s linear infinite;
}

@keyframes lmn-loader-spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

#lmn-redirect-overlay-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #3C434A;
}

#lmn-redirect-overlay-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-align: center;
    font-size: 14px;
    color: #3C434A;
}

/* Redirect END*/