html, body {
    height: 100%;
}

body,
p,
input {
    font-family: 'Open Sans', sans-serif;
}

body {
    padding: 0;
    margin: 0;
    background: #eee;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
    background: #fff;
    border: 1px solid #e1dfdf;
    box-shadow: 1px 1px 0 #d8d8d8;
    text-align: center;
    padding: 20px 55px;
}

.error {
    color: red;
    width: 290px;
}

input[type="text"], input[type="password"] {
    display: block;
    margin: 0 auto;
    width: 290px;
    height: 20px;
    font-style: normal;
    font-family: sans-serif;
    font-size: 14px;
    color: #555;
    border-radius: 3px;
    border: 1px solid #919191;
    box-shadow: inset 1px 0 3px rgba(0, 0, 0, 0.14);
    padding: 4px 8px;
}

.logo {
    padding: 40px 0 20px 0;
}

hr {
    height: 1px;
    border: 0;
    border-top: 1px solid #e2e2e2;
    margin: 15px 0;
}

label {
    font-size: 14px;
    font-weight: 700;
}

input[type="submit"] {
    background-color: #f49237;
    color: #fff;
    border: none;
    padding: 5px 30px;
    cursor: pointer;
    border-radius: 3px;
}


.oauth_message_container {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  width: 100%;
}

.oauth_message {
  color: red;
  font-family: var(--font-family);
}