@font-face {
    font-family: 'Outfit';
    src: url('/static/fonts/Outfit-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900; /* This range covers all possible weights in the variable font */
    font-display: swap; /* Optional: Controls how the font is displayed while loading */
}

*, input, select {
    font-family: 'Outfit';
}

body {
    background: linear-gradient(135deg, #FF00AE 0%, #001222 44%);
    margin: 0;
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
}

.background-overlay {
    background: linear-gradient(198deg, #0066D3 0%, rgba(0,0,0,0) 30%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}