* {
    box-sizing: border-box;
}

a {
    color: #26a;
}

html, input, select, textarea {
    font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
    font-size: 14px;
    line-height: 21px;
    color: #333;
}

@media screen and (max-width: 1400px) {
    html, input, select, textarea {
        font-size: 13px;
    }
}

html, body {
    padding: 0;
    margin: 0;
}

.header {
    height: 4rem;
    background: #f5f5f5;
}

h1 {
    margin: 0;
    height: 4rem;
    line-height: 4rem;
    background: linear-gradient(315deg, #5fd9ad, #2ad4e9), #5fd9ad;
    float: left;
    font-family: "azo-sans-web";
    color: white;
    font-size: 1.5rem;
    letter-spacing: 5px;
    padding-left: 1.5rem;
    font-weight: normal;
    text-transform: uppercase;
    width: 14rem;
}

body.local h1 {
    background: linear-gradient(315deg, #DEF974, #68D055), #DEF974;
}

body.staging h1 {
    background: linear-gradient(315deg, #32A0FD, #8447FF), #32A0FD;
}

h2 {
    margin: 0;
    padding: 2em 0;
    font-weight: normal;
    color: #666;
}

.user {
    float: right;
}
.user > * {
    display: block;
    float: left;
}
.user--email {
    line-height: 4rem;
    height: 4rem;
    padding-right: 1.5em;
}
.user--avatar {
    background: url(../images/no-avatar.jpg) 50% 50% no-repeat;
    background-size: cover;
    width: 4rem;
    height: 4rem;
}
.user--avatar img {
    height: 100%;
}

.container {
    text-align: center;
}

form {
    text-align: left;
    width: 20em;
    margin: 0 auto;
}

label, input {
    display: block;
    width: 100%;
}
.input {
    padding: 0.5em 0.5em;
    outline: none;
}
.input:focus {
    border: 2px solid #2ad4e9;
}
.button {
    padding: 0.666em 0;
    background: #eee;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    outline: none;
}
.button--primary {
    background: linear-gradient(315deg, #5fd9ad, #2ad4e9), #5fd9ad;
    color: white;
}
.button:focus {
    background: white;
    border: 2px solid #2ad4e9;
    color: #2ad4e9;
}

.form-row {
    padding-bottom: 1em;
}
.form-row--buttons {
    float: left;
    width: 100%;
}
.form-row--buttons .button {
    width: 47.5%;
    float: left;
}
.form-row--buttons .button + .button {
    float: right;
}
.form-row--links {
    text-align: center;
}

.alert {
    list-style: none;
    margin: 0 auto 2em;
    width: 30em;
    padding: 1rem 1.5rem;
    font-weight: bold;
    text-align: left;
}
.alert--error {
    background: #fdd;
    color: #a00;
}
