html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html,
body {
    height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", "Helvetica Neue", "Droid Sans", Helvetica, Arial,
        sans-serif;
}

a {
    color: #1779ba;
}

.button {
    min-height: 1.75rem;
    margin: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    line-height: 1.75;
    color: #fff;
    border: 1px solid #13659a;
    border-radius: 0.25rem;
    background-color: #1779ba;
    padding: 0.25rem 1rem;
    cursor: pointer;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.button:hover {
    background-color: #13659a;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.button.link:focus {
    outline: none;
    z-index: 1;
    box-shadow: 0 0 0 0.1rem #13659a inset, 0 0 0 0.2rem #fff inset,
        0 0 0 0.3rem #13659a inset;
}

.button.outline {
    background-color: transparent;
    color: #333;
    border-color: #c4c4c4;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
        border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.button.outline:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

h1 {
    margin: 1rem;
    color: #595a5a;
    font-weight: 400;
}

body {
    display: none;
}

/* Prevent flash */
body.container-mode {
    display: block;
}

body.saas-mode {
    display: block;
}
