/* Auth Popup Styles */

.auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}


.auth-popup {
    position: fixed;
    top: 50%;
    left: 50%;
	
	max-width: 760px;
    max-height: 600px;
	width: 90%; 
    height: 90%; 
	
    background: #fff;
    border-radius: 14px;
	
    overflow: hidden;
	
    transform: translate(-50%, -60%);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1000;
}

.auth-popup.active,
.auth-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-popup.active {
    transform: translate(-50%, -50%);
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.auth-tabs button {
    flex: 1;
    padding: 10px;
    background: #a4a4a4;
    border: none;
    cursor: pointer;
}

.auth-tabs button.active {
    background: #4bc5cb;
    color: #fff;
}

.auth-content {
    display: none;
}

.auth-content.active {
    display: block;
}

.auth-content input,
.auth-content button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.auth-content button {
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
.auth-content button:hover {
    background: #4bc5cb; 
}

.auth-error {
    font-size: 14px;
    color: red;
}

.auth-forgot {
    text-align: center;
    margin-top: 8px;
}

.auth-forgot a {
    font-size: 14px;
    color: #555;
}

.auth-forgot a:hover {
    text-decoration: underline;
}

.auth-close {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    background: #ff4444;
    height: 40px;
    width: 40px;
}

.auth-pass-recovery{
    font-weight: bold;
    margin: 30px 0 0px 0;
}
.auth-terms {
    display: flex;
    gap: 8px;
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 12px;
    margin-top: 10px;
    cursor: pointer;
}

.auth-terms input {
    margin-top: 2px;
}
.auth-terms input[type="checkbox"] {
    max-width: 1.25rem;
}

.auth-terms a {
    color: #000;
    text-decoration: underline;
}

.auth-popup-wrap{
	min-height: 100%;
    display: flex;
    width: 100%;
    height: 100%;
}
.auth-popup-img{
	background-image: url(/wp-content/themes/wanderbabywoo/images/login-banner.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 40%;
}
.auth-popup-cont{
	width: 60%;
    padding: 60px 30px 30px 30px;
}

.password-field {
    position: relative;
}

.password-field input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    opacity: 0.6;
}

.toggle-password:hover {
    opacity: 1;
}

@media screen and (max-width: 768px) {
	
.auth-popup-img{display: none;}

.auth-popup-cont{width: 100%;}

}