@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-VariableFont.ttf');
    font-style: normal;
}

body {
    font-size: 14px;
    color: #444;
    font-family: Inter;
}

#container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#login {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

form {
    padding: 20px;
    border: 1px solid #aaa;
    border-radius: 10px;
    width: 200px;
    background: rgba(0, 0, 0, 0.02);
}

.form-content {
    display: inline-block;
}

.header {
    font-family: Inter;
    font-weight: 400;
    text-align: center;
}

.input {
    text-align: center;
    padding-top: 10px;
}

.error {
    font-size: 12px;
    color: #c00;
    padding-top: 20px;
}
.hide {
    display: none;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
    font-family: Inter;
    font-weight: 200;
}

input.is-invalid {
    border-color: #c00;
}

a {
    color: #444;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
