* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: linear-gradient(rgba(8,12,28,0.90), rgba(8,12,28,0.95)), url('/WebsiteContent/Account_Layout/images/loginback.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
}

/* ================= NAVBAR ================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: #42424200;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}

    .logo span {
        color: #dfb019;
    }

.nav-links {
    display: flex;
    align-items: center;
}

/*.nav-links a {
        color: #ddd;
        text-decoration: none;
        margin-left: 30px;
        transition: 0.3s;
    }

        .nav-links a:hover {
            color: ##dfb019;
        }*/

.demo-btn {
    background: #dfb019;
    color: #111 !important;
    padding: 8px 18px;
    border-radius: 6px;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ================= MAIN ================= */

.main-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 8%;
}

/* LEFT */
.left-content {
    width: 50%;
}

    .left-content h1 {
        font-size: 42px;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
    }

        .left-content h1 span {
            color: #dfb019;
        }

    .left-content p {
        color: #ddd;
        margin-bottom: 25px;
    }

.feature-list li {
    list-style: none;
    margin-bottom: 10px;
    color: #ccc;
}
.input-group{
    width:100%;
}

.feature-list li::before {
    content: "✔";
    color: #dfb019;
    margin-right: 10px;
}

.create-btn {
    padding: 12px 28px;
    background: #dfb019;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    color:black;
}

/* RIGHT LOGIN */
.login-container {
    width: 410px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212,175,55,0.3);
}

    .login-container h2 {
        text-align: center;
        margin-bottom: 20px;
    }

.input-group {
    margin-bottom: 15px;
}

    .input-group input {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.2);
        background: rgba(255,255,255,0.08);
        color: #fff;
    }

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #dfb019;
    color: #111;
    font-weight: 600;
    cursor: pointer;
}

.extra-links {
    text-align: center;
    padding-top: 22px;
}
    .extra-links a {
        color: #dfb019;
    }
.left-content ul {
    margin-bottom: 25px;
}


.forgot {
    text-align: center;
    margin-top: 10px;
}

    .forgot a {
        color: #dfb019;
        text-decoration: none;
    }

/* ================= FOOTER ================= */

.footer {
    background: rgba(0,0,0,0.6);
    border-top: 1px solid rgba(212,175,55,0.3);
    padding: 15px 8%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-center {
    color: #dfb019;
}

.footer-right a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

    .main-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .left-content {
        width: 100%;
        margin-bottom: 40px;
    }

    .login-container {
        width: 100%;
        max-width: 400px;
    }
}

/* Mobile Menu */
@media(max-width:768px) {

    .menu-toggle {
        display: block;
    }
    .login-sc-row {
        margin-top: 10px;
        text-align: start;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 8%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        width: 220px;
        padding: 20px;
        border-radius: 10px;
        display: none;
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            margin: 10px 0;
        }

    .footer-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    body {
        background-attachment: scroll; /* Fix mobile background issue */
    }
}
