:root {
    --primary: #2e7d32;
    --primary-hover: #1b5e20;
    --accent: #1976D2;
    --bg: #f8faf9;
    --white: #ffffff;
    --text: #2c3e50;
    --border: #e0e6ed;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1100px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    box-sizing: border-box;
}

.register-card {
    max-width: 500px;
    margin-top: 50px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    color: var(--primary);
    font-size: 26px;
    margin: 0 0 10px 0;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #546e7a;
}

input, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

button:hover {
    background: var(--primary-hover);
}

#map-container {
    width: 100%;
    height: 70vh;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

/* InfoWindow Styles */
.iw-container { padding: 5px; min-width: 200px; max-width: 300px; }
.iw-title { font-weight: bold; color: var(--primary); display: block; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
.iw-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.iw-input { width: 60px !important; padding: 5px !important; }
.iw-textarea { height: 60px; margin-top: 5px; }
.restricted-notice { background: #fff1f0; color: #cf1322; padding: 10px; border-radius: 8px; font-size: 13px; margin-bottom: 10px; border: 1px solid #ffa39e; }