
/*region: CSS Reset*/
*, *::before, *::after {box-sizing: border-box;}
* {margin: 0;}
body {
    line-height: 1.2;
    -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
p { text-wrap: pretty; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
#root, #__next { isolation: isolate; }
/*endregion*/

/*region: Variables */

:root {
    --raised: #E9E9E9;
    --text: black;
    --text-secondary: #727272;
    --blue: #007AFF;
    --ost: #D72864;
}

/*endregion*/

/*region: Fonts*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*endregion*/

/* Global Styles */

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}


/* Elements */

.button {
    font-weight: 600;
    color: white;
    background-color: black;
    border: none;
    border-radius: 4px;
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

.button:disabled {
    color: var(--text-secondary);
    background-color: var(--raised);
    cursor: not-allowed;
}

.button-secondary {
    color: var(--text-secondary);
    background-color: var(--raised);
}

.back-link {
    color: var(--ost);
    font-weight: 600;
    text-decoration: none;
}
