@import url(https://fonts.googleapis.com/css?family=Open+Sans:100,300,400,700);
@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);

body,
html {
    height: 100%;
}

input {
    ::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    ::-moz-placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    :-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    &:focus {
        outline: 0 transparent solid;

        ::-webkit-input-placeholder {
            color: rgba(0, 0, 0, 0.7);
        }

        ::-moz-placeholder {
            color: rgba(0, 0, 0, 0.7);
        }

        :-ms-input-placeholder {
            color: rgba(0, 0, 0, 0.7);
        }
    }
}

.login-form {
    min-height: 10rem;
    margin: auto;
    max-width: 50%;
    padding: .5rem;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.login-text {
    color: white;
    font-size: 1.5rem;
    margin: 0 auto;
    max-width: 50%;
    padding: .5rem;
    text-align: center;

    .fa-stack-1x {
        color: black;
    }
}

.login-username,
.login-password {
    background: transparent;
    border: 0 solid;
    border-bottom: 1px solid rgba(white, .5);
    color: white;
    display: block;
    margin: 1rem;
    padding: .5rem;
    transition: 250ms background ease-in;
    width: calc(50% - 3rem);

    &:focus {
        background: white;
        color: black;
        transition: 250ms background ease-in;
    }
}

.login-submit {
    border: 1px solid white;
    background: transparent;
    color: white;
    display: block;
    margin: 1rem auto;
    min-width: 1px;
    padding: .25rem;
    transition: 250ms background ease-in;
    width: 150px;
    &:hover,
    &:focus {
        background: white;
        color: black;
        transition: 250ms background ease-in;
    }
}




[class*=underlay] {
    left: 0;
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
}

.underlay-photo {
    background: #FFFF;
    background-size: cover;
    z-index: -1;
}

.underlay-black {
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}