.align {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.grid {
    margin: 0 auto;
    max-width: 20rem;
    width: 90%
}

.hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.icons {
    display: none
}

.icon {
    display: inline-block;
    fill: #606468;
    font-size: 16px;
    font-size: 1rem;
    height: 1em;
    vertical-align: middle;
    width: 1em
}

* {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
    height: 100%
}

body {
    background-color: #2c3338;
    color: #606468;
    font-family: open sans, sans-serif;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 400;
    height: 100%;
    line-height: 1.5;
    margin: 0;
    min-height: 100vh
}

a {
    color: #eee;
    outline: 0;
    text-decoration: none
}

input, button {
    background-image: none;
    border: 0;
    color: inherit;
    font: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    -webkit-transition: background-color .3s;
    transition: background-color .3s
}

input[type=submit], button {
    cursor: pointer
}

.form {
    margin: -14px;
    margin: -.875rem
}

.form input[type=password], .form input[type=text], .form input[type=submit], .form button {
    width: 100%
}

.form__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 14px;
    margin: .875rem
}

.form__input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.login {
    color: #eee
}

.login label, .login input[type=text], .login input[type=password], .login input[type=submit], .login button {
    border-radius: .25rem;
    padding: 1rem
}

.login .lable_icon {
    padding: 1rem;
    background-color: #363b41;
    border-radius: .25rem 0 0 .25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.login input[type=password], .login input[type=text] {
    background-color: #3b4148;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.login input[type=password]:focus, .login input[type=password]:hover, .login input[type=text]:focus, .login input[type=text]:hover {
    background-color: #434a52
}

.login input[type=submit], .login button {
    background-color: #0f7ae5;
    color: #eee;
    font-weight: 700;
    text-transform: uppercase
}

.login input[type=submit]:focus, .login input[type=submit]:hover, .login button:focus, .login button:hover {
    background-color: #006cd8
}

.button {
    display: flex;
    justify-content: center;

    margin-top: 1.875rem;

    border-radius: 0.25rem;
    border: white solid 1px;

    background-color: transparent;

    transition: background-color 0.3s;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.button span {
    padding: 1rem;
    color: #eee;
    font-weight: 700;
    text-transform: uppercase;
}

.message {
    margin-top: 30px;
    text-align: center;
}

.success {
    color: lawngreen;
}

.error {
    color: red;
}

.warning {
    color: yellow;
}

p {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
    margin-top: 24px;
    margin-top: 1.5rem
}

.text--center {
    text-align: center
}