* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Flex Navigation */
.header {
    background-color: #32cd32;
    padding: 10px 0;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    color: #d8860b;
}

.logo-img {
    height: 45px;
}

#buttons {
    display: flex;
    gap: 10px;
}

#up, #in {
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease;
}

#up { background-color: #d8860b; color: white; }
#in { background-color: white; color: #32cd32; }

#up:hover, #in:hover { transform: scale(1.1); }

        /* Seller Layout Flexbox */

.seller-layout-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
}

.seller-hero-text {
    flex: 1;
}

.seller-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.soko { color: #32cd32; }
.hub { color: #d8860b; }

.benefits-flex {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1.1rem;
}

.seller-form-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 550px;
}

.flex-form-seller {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.form-row-flex {
    display: flex;
    gap: 15px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-group input, .input-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.seller-submit-btn {
    background-color: #32cd32;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.seller-submit-btn:hover {
    background-color: #d8860b;
    transform: translateY(-2px);
}

.sign-in-footer {
    text-align: center;
    margin-top: 20px;
}
/* 

        h2{
            font-size: xx-large;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            color: black;
            text-align: center;
        }
        .register{
            text-align: center;
        }
        p{
            font-size: 20px;
            letter-spacing: 1px;
        }
        .login-box {
            border: 1px solid white;
            padding: 20px;
            border-radius: 8px;
            width: 35vw;
            margin: 50px auto;
            box-shadow: 0 0 10px black;
            background-color: white;
        }
        .login-box label{
            display: block;
            margin-bottom: 8px;
            color: black;
        }
        .login-box input[type="text"],
        .login-box input[type="password"]{
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1 px solid grey;
            border-radius: 4px;
            box-sizing: border-box;
        }
        button{
            background-color: rgba(43, 221, 0, 26);
            padding: 7px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            text-align: center;
        }
        button:hover{
            transform: scale(1.1);
            background-color: rgb(252, 187, 11);
        }
        select{
            width: 35vw;
            padding: 10px;
            border-radius: 4px;
            background-color: white;
        }
        input{
            width: 34vw;
            padding: 10px;
            border-radius: 4px;
            background-color: white;
        }
        label{
            font-weight: 600;
        }
        a{
            color: rgb(43, 221, 26);
        }
        .sign-in{
            text-align: center;
        }
        .reg{
            display: flex;
            justify-content: center;
            align-items: center;

        }

        .reg2 a{
            color: black;
            text-decoration: none;
        } */
        /* Responsive Mobile */
@media (max-width: 900px) {
    .seller-layout-flex {
        flex-direction: column;
        text-align: center;
    }
    .form-row-flex {
        flex-direction: column;
    }
    .seller-hero-text {
        order: 1;
    }
    .seller-form-card {
        order: 2;
        width: 100%;
    }
}