/* Body */
@font-face {
    font-family: Geologica;
    src: url(../fonts/Geologica/static/Geologica_Auto-Bold.ttf);
    /* font-display: swap; */
}

@font-face {
    font-family: 'Geologica Light';
    src: url(../fonts/Geologica/static/Geologica_Auto-Light.ttf);
    /* font-display: swap; */
}


:root {
    --login-box-background: #303032;
    --text-color: white;
    --text-color-dim: gray;
    --main-content-background: #1b1b1c;
    --header-background: #303032;
    --contrast-item-background: #303032;
}

html {
    background-color: var(--header-background);
}


/* End of Body */

/*  ~~~~~~~~~~~~  */

/*  Inputs  */

input[type=text],
input[type=date],
input[type=datetime-local],
input[type=number],
input[type=password] {
    border: none;
    outline: none;
    font-family: 'Geologica Light';
    font-size: 16px;
    width: 100%;
    min-width: 1ch;
    border-radius: 8px;
    margin-top: 4px;
    height: 35px;
    padding: 0;
    text-indent: 5px;
}

input[type="color"] {
    width: 100%;
    height: 35px;
    -webkit-appearance: none;
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid !important;
    cursor: pointer;
    padding: 0;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
    border-radius: 6px;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 6px;
}

input[type=text],
input[type=password] {
    display: inline-block;
    min-width: 1ch;
}
