/* Base styles for the SPA shell.
   Component styles live in Vue SFC <style> (or future SCSS modules).
   Old front utility / page / modal rules were removed with the Vue2 rewrite. */

/* Variable Rubik: weight axis 300–900 */
@font-face {
    font-family: 'Rubik';
    src: url('./fonts/Rubik/Rubik.ttf') format('truetype');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('./fonts/Rubik/Rubik-Italic.ttf') format('truetype');
    font-weight: 300 900;
    font-style: italic;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: Rubik, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    overflow-y: scroll;
}

body {
    margin: 0;
    min-height: 100dvh;
    background-color: #10151f;
    color: #e7ebf5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#root {
    min-height: 100dvh;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    outline: none;
    font: inherit;
}

input {
    border-radius: 12px;
    border: none;
    background: #12101C;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    outline: none;
}

input::placeholder {
    color: #6E66A2;
}

img {
    max-width: 100%;
    height: auto;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.errors {
    display: none;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1560px;
    width: 100%;
}

p {
    margin: 0;
    padding: 0;
}

a,
button {
    transition: .25s all ease;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
