* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100dvw;
    height: 100dvh;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, li {
    list-style: none;
}


/*h2 {*/
/*    margin-bottom: 20px;*/
/*}*/

/*h5 {*/
/*    margin-top: 20px;*/
/*    margin-bottom: 10px;*/
/*}*/

hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

label:has(+ input[required])::after,
label:has(+ select[required])::after,
label:has(+ textarea[required])::after {
    content: '*';
    color: #E74C3C;
    margin-left: 4px;
}