:root {
    --text-color: #163459;
    --text-font-size: 1.6rem;
    --font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    --background-color: #5b718c;
}


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
}

ul,
ol {
    list-style: none;
}


caption,
th,
td {
    font-weight: normal;
}

img {
    border: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

html {
    font-size: 62.5%;
}

body {
    color: var(--text-color);
    font-size: var(--text-font-size);
    font-family: var(--font-family);
    font-variant: tabular-nums;
    background-color: var(--background-color);
    font-feature-settings: "tnum";
    text-rendering: optimizeLegibility;
    overflow: hidden;
}

#app {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

.form {
    background-color: #fff;
    width: 60rem;
    margin-top: 20rem;
    display: flex;
    flex-direction: column;
    padding: 1.6rem;
    border: 0;
    outline: 0;
    border-radius: 6px;
}

.form .form-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.6rem;
}

.form .form-input {
    flex: 3;
    border-radius: 6px;
    background-color: #dae2eb;
    color: var(--text-color);
    outline: none;
    border: none;
    padding: .5rem;
    width: 100%;
    min-height: 3.2rem;
    line-height: 3.2rem;
}

.form .form-label {
    flex: 1;
    color: var(--text-color);
}

.form button {
    font-size: 2rem;
    padding: 1.2rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    text-align: center;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    border-radius: 4px;
    color: #fff;
    background: #367fd9;
    border: 0;
}

.form button:hover {
    background: #367fd9f2;
    color: #ffffffeb;
}

.loading {
    animation: loading 1s linear infinite;
}

.version {
    color: #dddcdc
}