@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --fontSizeFixed1: 12px;
    --fontSizeFixed2: 15px;
    --fontSizeFixed3: 18px;
    --fontSizeFixed4: 21px;
    --fontSizeFixed5: 28px;
    --fontWeight1: 300;
    --fontWeight2: 400;
    --fontWeight2-1: 500;
    --fontWeight3: 600;
    --fontWeight4: 700;
    --lineHeight1: 1;
    --lineHeight2: 1.15;
    --lineHeight3: 1.25;
    --lineHeight4: 1.3333;
    --lineHeight5: 1.4;
    --lineHeight6: 1.5;
    --verticalSpacing: 10px;
    --fontFamilyFallbackSansSerif: -apple-system, system-ui, BlinkMacSystemFont, 'Helvetica', 'Arial', sans-serif;
    --fontFamilyInter: "Inter", var(--fontFamilyFallbackSansSerif);
    --light: #ccc;
    --black: #000;
    --text-black: #37352f;
    --dark-grey: #282828;
    --darker-grey: #575757;
    --mid-grey: #979797;
    --medium-grey: #b5b5b5;
    --light-grey: #ccc;
    --white: #fff;
    --blue1: #aba5dc;
    --blue2: #9694bd;
    --blue3: #8e82ca;
    --blue4: #8b7fba;
    --blue5: #646aa9;
    --blue6: #455a8c;
    --radius1: 2px;
    --radius2: 6px;
}

html, body, div, span, h1, h2, h3, h4, p, a, form, label, input, button {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

html {
    background: var(--light);
    color: var(--text-black);
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--fontFamilyInter);
}

*, ::before, ::after {
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    font-family: var(--fontFamilyInter);
    font-weight: var(--fontWeight2);
    font-size: var(--fontSizeFixed2);
    line-height: var(--lineHeight5);
    display: flex;
    justify-content: center;
    align-items: center;
}

#render-window {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#login-pod {
    width: 320px;
    padding: 24px;
    border-radius: var(--radius2);
    background-color: var(--medium-grey);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

#greeting {
    font-size: var(--fontSizeFixed3);
    font-weight: var(--fontWeight3);
    color: var(--text-black);
    padding-bottom: 16px;
    text-align: center;
}

label {
    font-size: var(--fontSizeFixed1);
    font-weight: var(--fontWeight2-1);
    color: var(--darker-grey);
    margin-bottom: 4px;
}

input[type="text"],
input[type="password"] {
    display: block;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--mid-grey);
    background-color: var(--white);
    padding: 8px 10px;
    border-radius: var(--radius1);
    font-size: var(--fontSizeFixed2);
    color: var(--text-black);
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-bottom-color: var(--blue5);
    box-shadow: 0 1px 0 0 var(--blue5);
}

.action-link {
    display: block;
    outline: none;
    border: none;
    line-height: inherit;
    border-radius: var(--radius1);
    font-size: var(--fontSizeFixed2);
    font-weight: var(--fontWeight2-1);
    background-color: var(--blue1);
    color: var(--text-black);
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.action-link:hover {
    background-color: var(--blue3);
    color: var(--white);
}