:root {
    --text-black: #1E1E1E;
    --text-white: white;
    --bg-white-transparent-1: #ffffff59;
    --bs-white: white;
    --color-primary: #3E7AB1;
    --color-primary-active: #3b82f6;

    --btn: #57534e;
    --btn-hover: #404040;
    --btn-active: #78716c;

    --btn-primary: #3b82f6;
    --btn-primary-hover: #2563eb;
    --btn-primary-active: #60a5fa;

    --btn-text: #ffffff;
    --btn-primary-text: #ffffff;
}

@font-face {
    font-family: PoiretOne;
    src: url("../assets/fonts/PoiretOne-Regular.ttf");
    font-weight: bolder;
}

@font-face {
    font-family: 'Titillium Web';
    src: url("../assets/fonts/TitilliumWeb-Regular.ttf");
}


::-webkit-outer-spin-button,
::-webkit-inner-spin-button {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Titillium Web';
}

#invalid-error {
    position: fixed;
    padding: 10px 20px;
    transform: translate(-50%, 50%);
    left: 50%;
    top: 4rem;
    border-radius: 4px;
    color: white;
    z-index: 999;
    display: none;
}

.input-label-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    width: max-content;
    margin: 0 auto;
    margin-bottom: 10px;
    /* font-family: initial; */
}

.ig-input {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background: var(--btn);
    color: var(--btn-text);
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: var(--btn-hover);
}

.btn:active {
    background: var(--btn-active);
}

.btn-primary {
    --btn: var(--btn-primary);
    --btn-hover: var(--btn-primary-hover);
    --btn-active: var(--btn-primary-active);
    --btn-text: var(--btn-primary-text);
}

.section-white {
    padding: 1rem;
    backdrop-filter: blur(10px);
    background: var(--bg-white-transparent-1);
    border-radius: 0.5rem;
    text-align: center;
    max-width: 60vw;
}

.hidden {
    display: none;
}

.text-black {
    color: var(--text-black);
}

.text-white {
    color: var(--text-white);
}

.flex-1 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.w-100 {
    width: 100%;
}

.w-90 {
    width: 90%;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.m-0 {
    margin: 0;
}

.ml-auto {
    margin: auto;
}

.mr-1 {
    margin-right: 1rem;
}



::selection {
    background: white;
    text-shadow: #000 0 0 3px;
}

::-moz-selection {
    background: white;
    text-shadow: #000 0 0 3px;
}

::-webkit-selection {
    background: white;
    text-shadow: #000 0 0 3px;
}

::-o-selection {
    background: white;
    text-shadow: #000 0 0 3px;
}

::-webkit-scrollbar {
    width: 9px;
    background-color: #cccccc;
}

::-webkit-scrollbar:hover {
    width: 9px;
}

::-webkit-scrollbar-thumb {
    background-color: #03A9F4;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #083B70;
    border: 1px solid #333333;
}

::-webkit-scrollbar-thumb:active {
    background-color: #6655FF;
    border: 1px solid #333333;
}

::-webkit-scrollbar-track {
    border: 1px gray solid;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 6px gray inset;
}

.pointer {
    cursor: pointer;
}

.relative  {
    position: relative;
}

.align-center {
    display: flex;
    align-items: center;
}