:root {
    --primary-color: #2e7d32; /* Forest Green */
    --bg-color: #f9fbf9;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* --- NAVIGATION & TOP ACTIONS --- */
#navbar {
    position: absolute; top: 0; left: 0; width: 100%; height: 70px;
    background: white; display: flex; align-items: center; padding: 0 20px;
    border-bottom: 1px solid #e0e0e0; z-index: 1000; box-sizing: border-box;
}

#logo { width: 180px;  object-fit: contain; margin-right: 15px; }

.reg-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 10px; }

h1 { margin: 10px 0; font-weight: 600; }

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-register {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-register:hover { background-color: #1b5e20; }

footer { margin-top: 25px; font-size: 0.9rem; }
.back-link { display: block; margin-top: 15px; color: #888; text-decoration: none; }


.feature-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin: 5px 0;
}