body{
    background:#FFF3FF;
    font-family:Poppins, sans-serif;
    margin:0;
    padding:0;
}
.notice-area {
    width: 50%;
    padding: 20px 30px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50; /* Fica por cima dos formulários */
}

.woocommerce-error,
.woocommerce-message {
    margin-bottom: 15px !important;
}

/* ====== CONTAINER CENTRAL ====== */
.page-wrapper{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.container{
    width:900px;
    max-width:95%;
    height:600px;
    background:#fff;
    border-radius:20px;
    display:flex;
    overflow:hidden;
    box-shadow:0 5px 30px rgba(0,0,0,0.18);
    transition:0.6s ease;
    position:relative;
}

/* ====== FORMULÁRIOS ====== */
.forms{
    width:50%;
    height:100%;
    padding:50px 30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-sizing:border-box;
    background:#fff;
    position:relative;
    overflow:visible;
}

.form-panel{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    opacity:0;
    transform:translateX(-40px);
    transition:opacity .45s ease, transform .45s ease;
    pointer-events:none;
}

.form-panel.active-panel{
    opacity:1;
    transform:translateX(0);
    pointer-events:auto;
}

.form-panel.hidden-panel{
    opacity:0;
    transform:translateX(40px);
    pointer-events:none;
}

.mobile-hidden{
    display:none !important;
}

.forms h2{
    font-size:38px;
    font-weight:700;
    color:#451833;
    margin-bottom:25px;
    width:100%;
    text-align:center;
}

.forms input{
    width:100%;
    max-width:360px;
    padding:14px;
    margin-bottom:12px;
    font-size:16px;
    border-radius:8px;
    border:1px solid #ccc;
    box-sizing:border-box;
}

.forms button{
    width:100%;
    max-width:360px;
    padding:14px;
    background:#4a1e39;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:17px;
    transition:0.2s;
    margin-top:10px;
}

.forms button:hover{
    background:#3a152d;
}

/* ====== PAINEL ROXO ====== */
.switch{
    width:50%;
    height:100%;
    background:#4a1e39;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:40px 25px;
    text-align:center;
    box-sizing:border-box;
    transition:0.6s ease;
}

.switch h3{
    font-size:34px;
    font-weight:600;
    margin-bottom:25px;
    color:#f4d6ea;
}

.switch button{
    border:2px solid #fff;
    background:transparent;
    padding:12px 40px;
    border-radius:8px;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.switch button:hover{
    background:white;
    color:#4a1e39;
}

/* ====== PC ====== */
@media (min-width:769px){
    .container.register-mode{
        flex-direction:row-reverse;
    }
    .mobile-hidden{
        display:flex !important;
    }
}

/* ====== MOBILE ====== */
@media (max-width:768px){
    .container{
        flex-direction:column;
        width:95%;
        height:auto;
        border-radius:30px;
    }

    .container.register-mode{
        flex-direction:column-reverse !important;
    }

    .forms{
        width:100%;
        height:auto;
        padding:35px 20px;
    }

    .switch{
        width:100%;
        height:auto;
        padding:45px 20px;
    }

    .form-panel{
        position:relative;
        width:100%;
        height:auto;
        opacity:1;
        transform:none;
        pointer-events:auto;
    }

    .hidden-panel{
        display:none !important;
    }
}
