:root {
    --primary-orange: #FF6600;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    background: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon { width: 32px; }
.logo-text { font-size: 1.25rem; font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 24px; }

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-signup {
    background: var(--primary-orange);
    color: white !important;
    padding: 8px 18px;
    border-radius: 8px;
    transition: 0.2s;
}

/* Main Login Area */
.login-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.welcome-section { text-align: center; margin-bottom: 2rem; }
.main-icon { margin-bottom: 1rem; width: 60px; }
.welcome-section h1 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.welcome-section p { color: var(--text-gray); }

/* Card */
.login-card {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    transition: 0.2s;
}

.form-group input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.btn-signin {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-signin:hover { background: #e65c00; }

.signup-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.signup-link a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}


/* Footer */
.footer {
    padding: 3rem 1rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}
.nav-logo__icon { width: 42px; height: 62px; color: var(--primary-orange); flex-shrink: 0; }