/* inter-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('./inter-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* material-icons-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('./material-icons.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* material-icons-outlined-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Material Icons Outlined';
    font-style: normal;
    font-weight: 400;
    src: url('./material-icons-outlined.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* fallback */
@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 400;
    src: url(./material-symbols-outlined.woff2) format('woff2');
}

.icon-loading {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

* {
    font-family: "Inter";
}

.form {
    width: 100%;
    height: 100%;
    font-family: "Inter";
}

input,
textarea,
select {
    width: 100%;
    border: 0;
    border-radius: 3px;
    line-height: 100%;
    box-shadow: none;
    font-size: 16px;
    padding: 10px;
    margin-bottom: 20px;
    resize: none;
    font-family: "Inter";
}

label {
    margin-bottom: 10px;
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.required {
    font-size: 16px;
    font-weight: bold;
    color: red;
}

button {
    border: 0;
    border-radius: 3px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

button>div {
    align-items: center;
    display: flex;
    gap: 10px;
}

.alert {
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.alert-info {
    background: #cce5ff;
    color: #004085;
}

.alert-info-outlined {
    background: #510bdd57;
    color: white;
    border: 1px solid #520bdd;
    font-size: 12px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.fbox {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

input:disabled {
    background: #f8f9fa;
    color: #6c757d;
}

.counter-container {
    font-size: 12px;
    color: #6c757d;
    float: right;
}

.hint {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 10px;
    display: block;
}

.custom-file-upload {
    display: flex;
    align-items: center;
}

.custom-file-upload button {
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    font-family: "Inter";
}

#file-name {
    font-size: 14px;
    margin-bottom: 10px;
}

.inline-note {
    padding: 10px 0px;
    border-left: solid #000000 4px;
    padding-left: 10px;
    background: #eaeaea;
    margin: 10px 0px;
}

.checkbox-group label {
    display: block;
    font-weight: normal;
    margin-bottom: 5px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 5px;
    display: inline-block;
    width: auto;
}