:root {
    --donkergroen: #244a44;
    --lichtgroen: #e8ebea;
    --oker: #c6934c;
    --donkerroze: #954b5b;
    --border: #ddebe9;
    --text: #1a3833;
    --muted: #6b7c79;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lichtgroen);
    font-family: 'Inter', sans-serif;
    color: var(--text);
}

.login-wrap {
    width: 100%;
    max-width: 380px;
    margin: 1rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(36, 74, 68, 0.12);
    padding: 2.5rem 2rem;
}

.logo {
    text-align: center;
    margin-bottom: 1.75rem;
}

.logo-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    border-radius: 0.85rem;
    background: var(--donkergroen);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--donkergroen);
    margin: 0;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0.15rem 0 0;
}

.alert {
    background: rgba(149, 75, 91, 0.1);
    color: var(--donkerroze);
    border: 1px solid rgba(149, 75, 91, 0.25);
    padding: 0.6rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.form-group input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--lichtgroen);
}

.form-group input:focus {
    outline: none;
    border-color: var(--donkergroen);
    background: #fff;
}

.btn-login {
    width: 100%;
    padding: 0.7rem;
    margin-top: 0.4rem;
    background: var(--donkergroen);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-login:hover {
    background: #1a3833;
}
