/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0d2910;
    color: #fff;
}

/* NAV */
.nav {
    background: #145a32;
    padding: 15px 20px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #38bdf8;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}

.nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.nav a:hover {
    color: #38bdf8;
}

/* HERO LAYOUT */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    min-height: 90vh;
}

/* LEFT SIDE */
.sales {
    max-width: 500px;
}

.sales h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.sales p {
    font-size: 18px;
    color: #cbd5f5;
}

/* LOGIN CARD */
.login-area {
    display: flex;
    justify-content: center;
}

.login-card {
    background: #020617;
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.login-card h2 {
    margin-bottom: 20px;
    text-align: center;
}

/* INPUTS */
.login-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #1e293b;
    color: white;
}

.login-card input::placeholder {
    color: #94a3b8;
}

/* BUTTON */
.login-card button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #38bdf8;
    color: #020617;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.login-card button:hover {
    background: #0ea5e9;
}

/* LINKS */
.login-links {
    margin-top: 15px;
    text-align: center;
}

.login-links a {
    display: block;
    color: #38bdf8;
    font-size: 14px;
    margin-top: 5px;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

/* IMAGE */
.hero-image {
    width: 350px;
    max-width: 40%;
}

/* MOBILE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 30px;
        max-width: 80%;
    }

    .sales h1 {
        font-size: 28px;
    }
}