/* Login / registration split-screen styles */

.pvbd-auth-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 0 transparent;
    background: #050b1d;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Left: main content with gradient and forms */
.pvbd-auth-left {
    flex: 1.1;
    position: relative;
    background: radial-gradient(circle at 0% 0%, #3ad5ff 0, transparent 55%),
                radial-gradient(circle at 100% 100%, #2667ff 0, #04133a 55%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pvbd-auth-content {
    width: 100%;
    max-width: 460px;
    padding: 28px 30px;
}

.pvbd-auth-header {
    margin-bottom: 10px;
}

.pvbd-auth-logo img {
    max-height: 94px;!important
    width: auto;
    display: block;
    margin-bottom: 8px;
}

.pvbd-auth-header p {
    margin: 0 0 18px;
    font-size: 14px;
    color: #e2ecff;
}

/* Tabs */
.pvbd-auth-tabs {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: rgba(6, 18, 60, 0.7);
    margin-bottom: 14px;
}

.pvbd-auth-tab {
    border: none;
    background: transparent;
    color: #c2d7ff;
    font-size: 13px;
    padding: 7px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.pvbd-auth-tab.active {
    background: #ffffff;
    color: #173a9e;
    transform: translateY(-1px);
}

/* Alerts */
.pvbd-auth-alert {
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 13px;
}

.pvbd-auth-alert-error {
    background: rgba(255, 145, 145, 0.12);
    border: 1px solid rgba(255, 122, 122, 0.6);
    color: #ffe7e7;
}

.pvbd-auth-alert-success {
    background: rgba(123, 237, 159, 0.12);
    border: 1px solid rgba(99, 230, 140, 0.6);
    color: #e4ffe9;
}

/* Forms */
.pvbd-auth-forms {
    margin-top: 6px;
}

.pvbd-auth-form {
    display: none;
}

.pvbd-auth-form-active {
    display: block;
}

.pvbd-form-row {
    margin-bottom: 10px;
}

.pvbd-form-row-half {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.pvbd-form-row label {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
    color: #e1e9ff;
}

.pvbd-form-row input[type="text"],
.pvbd-form-row input[type="email"],
.pvbd-form-row input[type="password"] {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(198, 214, 255, 0.8);
    padding: 8px 12px;
    font-size: 14px;
    background: rgba(1, 9, 48, 0.6);
    color: #ffffff;
}

.pvbd-form-row input::placeholder {
    color: #93a7e0;
}

.pvbd-form-row input:focus {
    outline: none;
    border-color: #71b3ff;
    box-shadow: 0 0 0 1px rgba(91, 164, 255, 0.4);
}

/* Inline row */
.pvbd-form-row-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pvbd-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #d0ddff;
}

.pvbd-checkbox input[type="checkbox"] {
    margin: 0;
}

/* Buttons */
.pvbd-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.16s ease, background 0.18s ease;
}

.pvbd-button-primary {
    background: linear-gradient(135deg, #1b5cff, #00a2ff);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(6, 88, 255, 0.45);
}

.pvbd-button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(6, 88, 255, 0.55);
}

.pvbd-button-outline {
    background: transparent;
    border: 1px solid rgba(209, 222, 255, 0.9);
    color: #ffffff;
}

.pvbd-button-outline:hover {
    background: rgba(1, 13, 58, 0.9);
}

/* Logged-in box */
.pvbd-auth-logged-in p {
    margin: 0 0 10px;
    color: #ffffff;
}

.pvbd-auth-dashboard-link {
    margin-top: 4px;
}

/* Footnote */
.pvbd-auth-footnote {
    margin-top: 10px;
    font-size: 12px;
    color: #c7d5ff;
    max-width: 430px;
}

/* Right visual */
.pvbd-auth-right {
    flex: 0.9;
    position: relative;
    background-color: #020617;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.pvbd-particles-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Particles */
.pvbd-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(215, 236, 255, 0.9);
    opacity: 0.8;
    animation-name: pvbd-float;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes pvbd-float {
    from {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
    20% {
        opacity: 0.9;
    }
    to {
        transform: translate3d(0, -40px, 0);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 960px) {
    .pvbd-auth-wrapper {
        flex-direction: column-reverse;
        min-height: 100vh;
        margin-left: 0;
        width: 100%;
    }

    .pvbd-auth-left,
    .pvbd-auth-right {
        flex: none;
        width: 100%;
    }

    .pvbd-auth-right {
        height: 220px;
    }

    .pvbd-auth-content {
        padding: 20px 18px 24px;
        max-width: 480px;
        margin: 0 auto;
    }
}
