.register-page-wrapper {
    height: calc(100vh - 84px);
    min-height: calc(100vh - 84px);
    background: radial-gradient(circle at center, #2e1d0b 0%, #1a0f02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

/* Pollen Particles */
.pollen-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.pollen {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 140, 0, 0.4);
    border-radius: 50%;
    animation: drift infinite linear;
}

.register-app-frame {
    width: 100%;
    max-width: 1100px;
    height: calc(100vh - 140px);
    max-height: 760px;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

@keyframes drift {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) translateX(50px) scale(1.5);
        opacity: 0;
    }
}

.login-split-container {
    display: flex;
    width: 100%;
    height: 100%;
    background: white;
}

/* Floating Bee Elements */
.floating-bee {
    position: absolute;
    z-index: 5;
    color: #FF8C00;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.4));
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-bee svg {
    width: 100%;
    height: 100%;
}

.bee-wing {
    transform-origin: center;
    animation: flap 0.1s ease-in-out infinite;
}

@keyframes flap {
    0%, 100% { transform: scaleX(1); opacity: 0.8; }
    50% { transform: scaleX(0.3); opacity: 0.4; }
}

.bee-1 {
    top: 10%;
    right: 5%;
    transform: rotate(15deg);
    animation: float-slow 6.5s ease-in-out infinite;
    width: 6.5rem;
    height: 6.5rem;
    --rot: 15deg;
}

.bee-2 {
    bottom: 8%;
    left: 4%;
    transform: rotate(-10deg);
    animation: float-slow 8.5s ease-in-out infinite reverse;
    width: 5.5rem;
    height: 5.5rem;
    --rot: -10deg;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(var(--rot)); }
    50% { transform: translateY(-40px) rotate(var(--rot)); }
}


.left-hero-section {
    flex: 1.2;
    position: relative;
    background: linear-gradient(135deg, #1a0f02 0%, #3d2b1f 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.illustration-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5vh;
}

.honey-glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.honey-blob {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, transparent 100%);
    filter: blur(40px);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
}

.blob-1 { width: 300px; height: 300px; top: 10%; left: -5%; }
.blob-2 { width: 400px; height: 400px; bottom: 5%; right: 15%; transform: rotate(45deg); }

.abstract-bubble {
    position: relative;
    z-index: 2;
    background: white;
    padding: 2rem 3rem;
    border-radius: 80px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 90%;
}

.bubble-text h1 { color: #1a0f02; letter-spacing: 5px; line-height: 1.1; }
.bubble-text p { color: #FF8C00; letter-spacing: 4px; font-size: 1rem; font-weight: 600; }

.deco-dot { position: absolute; border-radius: 50%; z-index: 1; }
.dot-1 { width: 12px; height: 12px; background: #FF8C00; top: 25%; right: 20%; }
.dot-2 { width: 8px; height: 8px; background: rgba(255, 255, 255, 0.2); top: 15%; left: 25%; }
.dot-3 { width: 18px; height: 18px; background: rgba(255, 140, 0, 0.15); bottom: 20%; left: 15%; }
.dot-4 { width: 6px; height: 6px; background: #FFB347; top: 60%; left: 20%; }



.right-form-section {
    flex: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 2rem;
    overflow-y: auto;
}

.login-form-box { width: 100%; text-align: center; }

.input-container-pill {
    display: flex;
    align-items: center;
    background: #f0f2f5;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-container-pill:focus-within {
    background: white;
    border-color: #50C878;
    box-shadow: 0 8px 20px rgba(80, 200, 120, 0.08) !important;
}

.icon-pill { color: #adb5bd; font-size: 1.1rem; }
.input-form-pill {
    background: transparent;
    border: none;
    width: 100%;
    font-weight: 500;
    color: #495057;
    outline: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-brand-primary {
    background: linear-gradient(180deg, #50C878 0%, #32CD32 100%);
    border: none;
    color: white;
    padding: 1.1rem;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(80, 200, 120, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-brand-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.btn-brand-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(80, 200, 120, 0.45);
    filter: brightness(1.1);
    color: white;
}

.fw-black { font-weight: 900; }
.custom-check:checked { background-color: #50C878; border-color: #50C878; }

.btn-social-honey {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    transition: all 0.3s ease;
}

.btn-social-honey:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #1a0f02;
}

/* ========== MOBILE VIEW ========== */
@media (max-width: 991.98px) {
    .register-page-wrapper {
        padding: 0 0 5rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: calc(100dvh - 70px);
        min-height: calc(100dvh - 70px);
        background: radial-gradient(circle at 30% 50%, #3d2012 0%, #1a0f02 100%);
        overflow: hidden !important;
        position: fixed;
        width: 100%;
    }

    .left-hero-section { display: none !important; }

    .register-app-frame {
        border-radius: 20px;
        max-width: 450px;
        width: calc(100% - 1.5rem);
        height: auto !important;
        max-height: none !important;
        margin: 0 auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .login-split-container { flex-direction: column; height: auto; }

    .right-form-section { flex: 1; padding: 1rem 1rem 1.25rem; align-items: flex-start; }

    .login-form-box h1 { font-size: 0.95rem !important; margin-bottom: 0.1rem !important; }
    .login-form-box .text-center { margin-bottom: 0.5rem !important; }
    .login-form-box .text-center p { font-size: 0.72rem !important; }

    .input-container-pill { padding: 0.38rem 0.9rem; }
    .input-form-pill { font-size: 0.68rem; letter-spacing: 0.2px; }
    .icon-pill { font-size: 0.85rem; }
    .btn-brand-primary { padding: 0.55rem !important; font-size: 0.72rem !important; letter-spacing: 1.5px; }

    .mb-3 { margin-bottom: 0.4rem !important; }
    .mb-2 { margin-bottom: 0.3rem !important; }
    .form-check-label, .text-secondary.small, .mt-2>p { font-size: 0.68rem !important; }

    .btn-social-honey {
        font-size: 0.65rem !important;
        padding: 0.45rem !important;
    }
}

/* Specific to Registration */
.field-feedback-text {
    font-size: 0.6rem;
    margin-top: 1px;
    padding-left: 1rem;
    font-weight: 500;
    display: block;
    min-height: 1rem;
}
