@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap');

BODY {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    box-sizing: content-box;
    font-size: 20px;
    cursor: default;
    user-select: none;
}

BODY * {
    box-sizing: border-box;
}

DIV.content {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

HEADER {
    padding: 10px 0;
    background: #ecf0f1;
    border-bottom: 1px solid #bdc3c7;
}

HEADER > DIV {
    display: flex;
    align-items: center;
}

A {
    color: #3498db;
}

H1 {
    font-size: 32px;
    margin: 0 0 2px 10px;
    font-weight: 500;
    white-space: nowrap;
}

DIV.subtitle {
    width: 100%;
    text-align: right;
    font-size: 24px;
}

DIV.error {
    margin-bottom: 20px;
    color: #e74c3c;
}

DIV.content.error {
    width: 640px;
}

DIV.content.loginform {
    width: 640px;
    display: flex;
    gap: 40px;
    justify-content: center;
}

DIV.loginform DIV.part {
    width: 300px;
}

LABEL {
    display: block;
}

LABEL.text {
    margin-bottom: 10px;
}

INPUT[type=email], INPUT[type=password], INPUT[type=text] {
    outline: none;
    width: 300px;
    padding: 4px 10px;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    border-radius: 5px;
    border: 1px solid #7f8c8d;
    background-color: white !important;
}

INPUT[type=email]:disabled, INPUT[type=password]:disabled, INPUT[type=text]:disabled {
    background-color: #f8f9fa !important;
}

BUTTON {
    outline: none;
    border: none;
    padding: 10px 30px;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 1px 1px #bdc3c7;
    background: #ecf0f1;
    color: black;
    width: 300px;
    margin: 6px 0;
}

BUTTON:active {
    margin: 7px -1px 5px 1px;
    box-shadow: none;
}

BUTTON[disabled] {
    opacity: 0.5;
    cursor: pointer;
    pointer-events: none;
}

BUTTON I {
    display: inline-block;
    margin-right: 5px;
}

I.fal.big {
    font-size: 100px;
    margin-top: 30px;
}
