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

body.auth-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    background: #f5f5f3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 14px;
    padding: 36px 40px;
    width: 100%;
    max-width: 400px;
}

.auth-logo {
    margin-bottom: 20px;
}

.auth-logo-img {
    width: 160px;
    height: auto;
    display: block;
}

.auth-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.auth-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 5px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 0.15s;
}

input:focus {
    outline: none;
    border-color: #E8520A;
    box-shadow: 0 0 0 3px rgba(232,82,10,0.12);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background 0.15s;
}

.btn-primary { background: #E8520A; color: #fff; }
.btn-primary:hover { background: #c94208; }
.btn-full { width: 100%; }

.alert {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 13px;
}

.alert-danger  { background: #fee2e2; color: #dc2626; }
.alert-success { background: #dcfce7; color: #15803d; }

.auth-links {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
}

.auth-links a { color: #E8520A; text-decoration: none; }
.auth-links a:hover { text-decoration: underline; }

.auth-portaal-link {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}

.auth-portaal-link a { color: #E8520A; }

.form-error { font-size: 12px; color: #dc2626; margin-top: 4px; display: block; }
