@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import 'flex-properties.css';
@import 'input-shared.css';
@import 'login-shared.css';
@import 'loading.css';
@import 'blazor.css';
@import 'colors.css';

:root {
    --light-gray: #D1D5DB;
    --gray: #E2E8F0;
    --white: #FFFFFF;
    --white-hover: #F0F9FF;
    --warning-yellow: #FEF3C7;
    --warning-text-color: #92400e;
    --dark-blue: #1B5BAB;
    --dark-blue-hover: #154785;
    --blue: #DBEAFE;
    --light-blue: #F1F9FF;
    --dark-yellow: #92400E;
    --orange: #AD5716;
    --lighter-yellow: #FEF7ED;
    --light-yellow: #FEF3C7;
    --success-green: #217757;
    --dark-green: #047857;
    --light-green: #EDFDF5;
    --dark-red: #9B1C1C;
    --red: #B12822;
    --light-red: #FCE3E2;
    --regular-text-color: #4B5563;
    --light-text-color: #6B7280;
    --scroll-bar-thumb: #9CA3AF;
    --scroll-bar-background: #F8FAFC;
    --font-family: 'Inter', Sans Serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    padding: 0px;
    margin: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    font-family: var(--font-family);
    overflow-x: hidden;
    color: var(--regular-text-color);
}

#app{
    height: 100%;
}

/* this is to deal with the autofocus showing an outline page load. This will keep our website accessible without the ugly border */
h1:focus {
    outline: none;
}

h3 {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    height: 16px;
    margin: 0;
}

#main{
    width: 1140px;
    padding-top: 32px;
    padding-bottom: 64px;
}

.red-link {
    color: var(--red);
    text-align: right;
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}