:root {
    /* Color Palette derived from "Login to continue" design */
    --bg-dark-primary: #0b0c16;
    /* Very dark background */
    --card-bg: #1e1f35;
    /* Card background */

    --text-primary: #ffffff;
    --text-muted: #8b8f9c;
    /* Labels and link text */
    --text-placeholder: #575a6c;

    --input-bg: transparent;
    --input-border: #353852;
    --input-focus: #5d5fef;

    --btn-primary: #5d5fef;
    /* Purple/Blue button */
    --btn-hover: #4b4bd9;
}

/* CSS Reset to prevent layout breaking without Bootstrap */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark-primary);
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
}

/* Global utility classes */
input,
button,
textarea,
select {
    font-family: inherit;
}

.text-primary {
    color: var(--text-primary);
}

.text-muted {
    color: var(--text-muted);
}