

/* popup styling */
.f4y-auth-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.f4y-auth-popup.active {
    display: flex;
}

.f4y-auth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.f4y-auth-form .u-column1.col-1, 
.f4y-auth-form .u-column2.col-2 {
	width: 100% !important;
}

.f4y-auth-form h2 {
	font-size:16px;
	font-weight: bold;
}
.f4y-auth-box {
    position: relative;
    z-index: 1;
    width: 700px;
    max-width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-sizing: border-box;
}
.f4y-auth-box .f4y-auth-form .woocommerce .u-column2.col-2,
.f4y-auth-box .f4y-auth-form .woocommerce .u-column1.col-1 h2 {
	display:none;
}
.f4y-close-icon {
    position: sticky;
    top: 0;
    left: 100%;
	transform: translate(10px, -12px);
    border: 0;
    background: none;
    font-size: 30px;
    border: 2px solid;
    border-radius: 50%;
    height: 26px;
    width: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.f4y-auth-heading {
    text-align: center;
    margin-bottom: -5px;
	margin-top: -20px;
}

.f4y-auth-form {
    width: 100%;
}

.f4y-auth-form .f4y-open-signup {
	margin-bottom: 10px;
	text-align: center;
	font-size: 18px;
	cursor: pointer;
	color: var(--theme-color);
}

.f4y-auth-form .f4y-open-signup span {
	color: #ff0000;
}

.f4y-auth-box .f4y-close-popup {
	text-align: center;
	cursor: pointer;
	font-size: 14px;
	color: var(--theme-color);
}

.f4y-auth-box .f4y-auth-form .woocommerce .u-column2.col-2 .woocommerce-form-register {
	margin-top: 0em;
}

.f4y-auth-box .f4y-auth-form .woocommerce form.login,
.f4y-auth-box .f4y-auth-form .woocommerce form.register {
	margin: 1em 0;
}

.f4y-auth-form input,
.f4y-auth-form select,
.f4y-auth-form textarea
/* .f4y-auth-form button */
{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* @media (max-width: 900px) {
    .f4y-auth-popup {
        padding: 15px;
    }
    .f4y-auth-box {
        padding: 20px;
        border-radius: 8px;
        max-height: calc(100vh - 30px);
		max-width: 80%;
    }
    .f4y-auth-heading h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .f4y-auth-popup {
        padding: 10px;
    }
    .f4y-auth-box {
        padding: 15px;
        max-height: calc(100vh - 20px);
		max-width: 90%;
    }
    .f4y-auth-heading h2 {
        font-size: 20px;
    }
} */