body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #0b1020;
    color: #f5f7ff;
}
a {
    color: #8fd3ff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    background: #141a33;
    border-bottom: 1px solid #222a4a;
}
.topbar a {
    margin-left: 16px;
}
.logo {
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
}
.content {
    padding: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.auth-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: radial-gradient(circle at top, #1e2640, #050814);
}
.auth-card {
    background: #141a33;
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    width: 360px;
}
.auth-card h1 {
    margin-top: 0;
    margin-bottom: 16px;
}
label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 8px 10px;
    margin-top: 4px;
    border-radius: 6px;
    border: 1px solid #29304f;
    background: #0c1224;
    color: #f5f7ff;
    box-sizing: border-box;
}
textarea {
    min-height: 60px;
}
button {
    background: #2b8cff;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 8px;
}
button:hover {
    background: #1f6ad1;
}
.link-button {
    background: none;
    border: none;
    color: #8fd3ff;
    cursor: pointer;
    padding: 0;
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}
.table th,
.table td {
    padding: 8px 10px;
    border-bottom: 1px solid #222a4a;
    text-align: left;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.card {
    background: #141a33;
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.field-error {
    color: #ff9b9b;
    font-size: 12px;
}
.error {
    color: #ff9b9b;
}
.info {
    color: #9be7ff;
}
.small {
    font-size: 12px;
    margin-top: 12px;
}
.dashboard-header {
    margin-bottom: 20px;
}
.dashboard-header .progress-to-next {
    margin: 8px 0 4px 0;
    font-size: 14px;
    color: #b0b8d0;
}
.progress-bar {
    height: 10px;
    background: #222a4a;
    border-radius: 5px;
    overflow: hidden;
    max-width: 320px;
    margin-top: 8px;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2b8cff, #5ba8ff);
    border-radius: 5px;
    transition: width 0.3s ease;
}
