.register-wrapper {
    width: 100%;
    max-width: 900px;
    color: white;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

    .tab-buttons button {
        padding: 10px 30px;
        border-radius: 30px;
        border: none;
        background: #202020;
        color: white;
        margin: 0 10px;
    }

    .tab-buttons .active {
        background: white;
        color: black;
    }

.register-box {
    background: #151515;
    padding: 25px;
    border-radius: 12px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
}

.input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #0d0d0d;
    color: white;
}

.verify-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.verify-btn {
    padding: 10px 15px;
    background: #007bff;
    border-radius: 6px;
    color: white;
    border: none;
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border-radius: 10px;
    background: #2e6bfa;
    border: none;
    color: white;
    font-size: 18px;
}

.error {
    color: #ff5555;
}

.success {
    color: #55ff55;
}

.info {
    color: #55aaff;
}

.terms {
    margin-top: 20px;
}
.layout-root {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.sidebar {
    width: 240px;
}

main {
    overflow-y: auto;
}


/* === Layout root & shell =================================== */
.vs-layout-root {
    min-height: 100vh;
    background: #050505;
    color: #f5f5f5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vs-shell {
    min-height: calc(100vh - 56px); /* minus topbar height */
}

/* === Top bar =============================================== */
.vs-topbar {
    background: #050505;
    border-bottom: 1px solid #222;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
    height: 56px;
    display: flex;
    align-items: center;
}

.vs-topbar-title {
    text-align: center;
    white-space: nowrap;
}

.vs-topbar-logo {
    font-weight: 600;
    font-size: 20px;
}

.vs-topbar-sub {
    font-size: 13px;
    opacity: 0.7;
    margin-left: 8px;
}

.vs-user-email {
    font-size: 14px;
    color: #cfcfcf;
}

/* === Sidebar =============================================== */
.vs-sidebar {
    width: 150px;             /* wider sidebar */
    background: #050505;
    border-right: 1px solid #222;
    color: #fff;
    min-height: calc(100vh - 56px);
}

.vs-sidebar-header {
    border-bottom: 1px solid #222;
}

.vs-sidebar-logo {
    font-size: 18px;
    font-weight: 600;
}

.vs-sidebar-sub {
    font-size: 12px;
    color: #a0a0a0;
}

/* Nav links */
.vs-nav-link {
    color: #cfcfcf !important;
    border-radius: 8px;
    padding: 0.55rem 0.9rem;
    margin-bottom: 4px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.vs-nav-link i {
    font-size: 1rem;
}

.vs-nav-link:hover {
    background: #1a1a1a;
    color: #ffffff !important;
    text-decoration: none;
}

/* active route */
.vs-nav-link.active {
    background: #0d6efd;
    color: #ffffff !important;
}

/* Logout button at bottom */
.vs-logout {
    color: #ff6b6b !important;
    border: none;
    background: transparent;
}

.vs-logout:hover {
    background: #2a0000;
    color: #ffffff !important;
}

/* === Main content area ===================================== */
.vs-main {
    background: #101010;
    color: #f5f5f5;
}

/* Optional: cards in dark mode */
.vs-main .card {
    background: #181818;
    border: 1px solid #2a2a2a;
    color: #f5f5f5;
}

/* Center Card for Profile */
.vs-profile-card {
    width: 750px;
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    color: #fff;
}

    .vs-profile-card .card-title {
        color: #fff;
    }
