﻿* {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html,
body {
    height: 100%;
}

body {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    position: relative;
    font-family: "Roboto", helvetica, arial, sans-serif;
    font-size: 1.5em;
}



.login-form {
    width: 100%;
    padding: 2em;
    position: relative;
    background: rgba(0, 0, 0, 0.15);
}

    .login-form:before {
        content: "";
        position: absolute;
        top: -2px;
        left: 0;
        height: 2px;
        width: 100%;
        background: -webkit-gradient(linear, left top, right top, from(#b158c1), to(#171d90));
        background: linear-gradient(to right, #b158c1, #171d90);
    }

@media screen and (min-width: 600px) {
    .login-form {
        width: 50vw;
        max-width: 15em;
    }
}

.flex-row {
    display: -webkit-box;
    display: flex;
    margin-bottom: 1em;
}

.lf--label {
    width: 2em;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background: #f5f6f8;
    cursor: pointer;
}

.lf--input {
    -webkit-box-flex: 1;
    flex: 1;
    padding: 1em;
    border: 0;
    color: #8f8f8f;
    font-size: 1rem;
}

    .lf--input:focus {
        outline: none;
        -webkit-transition: -webkit-transform 0.15s ease;
        transition: -webkit-transform 0.15s ease;
        transition: transform 0.15s ease;
        transition: transform 0.15s ease, -webkit-transform 0.15s ease;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.lf--submit {
    display: block;
    padding: 1em;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#b158c1), to(#171d90));
    background: linear-gradient(to right, #b158c1, #171d90);
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 0.75em;
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

    .lf--submit:focus {
        outline: none;
        -webkit-transition: -webkit-transform 0.15s ease;
        transition: -webkit-transform 0.15s ease;
        transition: transform 0.15s ease;
        transition: transform 0.15s ease, -webkit-transform 0.15s ease;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.lf--forgot {
    margin-top: 1em;
    color: #00d6b7;
    font-size: 0.65em;
    text-align: center;
    position: relative;
}

::-webkit-input-placeholder {
    color: #8f8f8f;
}

::-moz-placeholder {
    color: #8f8f8f;
}

:-ms-input-placeholder {
    color: #8f8f8f;
}

::-ms-input-placeholder {
    color: #8f8f8f;
}

::placeholder {
    color: #8f8f8f;
}
