html, body, form {
    margin: 0;
    padding: 0;
}

body {
    background: #252525;
    color: white;
    height: 100%;
}

/* GLOBALS */
.center {
    justify-content: center !important;
}

/* FORM */
#rfc-form {
    width: 330px;
    margin: 0 auto;
    padding-top: 21px;
    font-size: 13px;
    font-family: sans-serif;
}

.input-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.input-group > label {
    width: 120px;
}

.input-group > input {
    width: 180px;
    font-family: inherit;
}

.input-group > button {
    width: 100px;
}

.input-group.input-group--last {
    margin-bottom: 16px;
}

/* TEXT */
.text.text--error {
    color: #ff2262;
}

/* CONTENT */
#content {
    max-width: 800px;
    max-width: fit-content;
    margin: -80px auto 0 auto;
    font-family: inherit !important;
}

