@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --primary-btn: #2a2a2a;
    --border-color: #000000;
    --cyan: #00c3cd;
    --orange: #f28b00;
    --magenta: #e5007e;
    --yellow: #ffd100;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/* Utils */
.text-center { text-align: center; }
.mt-2 { margin-top: 10px; }
.mt-4 { margin-top: 20px; }
.mb-4 { margin-bottom: 20px; }
.w-100 { width: 100%; }

/* Form Elements */
.input-group {
    margin-bottom: 15px;
    position: relative;
}

.input-field {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.input-field::placeholder {
    color: #555;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #fff;
    border: 1px solid #333;
}

.btn-primary {
    background-color: var(--primary-btn);
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 30px;
}

.link-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
}

.link-group a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

/* Izzi Logo styles (CSS drawing to avoid image dependencies if possible) */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    margin-top: 50px;
}

.logo-container img {
    height: 60px;
}

/* Bottom Nav Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 8px 0 12px 0;
    border-top: 1px solid #e0e0e0;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    flex: 1;
}

.nav-item.active {
    color: var(--text-color);
    font-weight: 600;
}

.nav-icon {
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}
