/* GLOBAL RESET */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body { background-color: #f4f6f8; color: #333; line-height: 1.6; padding-bottom: 60px; }

a { text-decoration: none; color: inherit; }

/* NAVBAR */
.navbar {
    background: #2d3436; color: white; padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar .logo { font-size: 1.5rem; font-weight: bold; color: #ffa502; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a { color: #ccc; margin-left: 20px; transition: color 0.3s; }
.nav-links a:hover { color: #ffa502; }
.nav-links .btn-highlight { 
    background: #ffa502; color: #2d3436; padding: 8px 15px; border-radius: 4px; font-weight: bold; 
}

/* FORMS (Login/Register) */
.auth-container {
    max-width: 400px; margin: 50px auto; background: white; padding: 30px;
    border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.auth-container h2 { text-align: center; margin-bottom: 20px; color: #2d3436; }
input[type="text"], input[type="email"], input[type="password"], input[type="tel"] {
    width: 100%; padding: 12px; margin: 8px 0; border: 1px solid #ddd; border-radius: 4px;
}
button.btn-primary {
    width: 100%; padding: 12px; background: #ffa502; border: none; color: #2d3436;
    font-weight: bold; cursor: pointer; border-radius: 4px; font-size: 1rem; margin-top: 10px;
}
button.btn-primary:hover { background: #e69500; }

/* UTILITY */
.text-center { text-align: center; }
.small-text { font-size: 0.9rem; color: #666; margin-top: 15px; display: block; }