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

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

body {
    font-family: 'Asta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
}

.brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.header {
    background: #fff;
    border-bottom: 0.5px solid #e5e5e0;
    padding: 16px 20px;   /* 14px → 16px */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    font-weight: 500;
    font-size: 15px;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 1.5rem;
}

.container-wide {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
}

.center-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}

.btn-primary {
    background: #3B6D11;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.btn-secondary {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
}

.pill {
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 20px;
    background: #fff;
    color: #555;
    text-decoration: none;
    display: inline-block;
}

.pill.active {
    background: #639922;
    color: #fff;
    font-weight: 500;
}

.badge {
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    background: #EAF3DE;
    color: #27500A;
    font-weight: 500;
}

input[type="text"], input[type="password"], textarea, select {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.btn-primary {
    background: #3B6D11;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.btn-secondary {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
}

.btn-tint {
    background: #EAF3DE;
    color: #3B6D11;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.btn-danger {
    background: #fff;
    color: #C0392B;
    border: 1px solid #F5C6C0;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
}
