/* RESET CSS */
/* reset.css | MIT License | github.com/meyerweb/reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* END RESET CSS */

/* GENERAL */
body {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #999;
    background-color: #1a1a1a;
    padding-top: 50px;
}

* {
    box-sizing: border-box;
}

hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 20px 0;
}

h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

a {
    color: #fff;
    text-decoration: underline;
    cursor: pointer !important;
}

a[data-href]{
    cursor: pointer !important;
}

.button {
    display: inline-block;
    height: 52px;
    line-height: 52px;
    padding: 0px 20px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    background-color: #16c670;
    border: 1px solid #16c670;
    cursor: pointer;
    position: relative;
}

.button:hover {
    background-color: #0E7843;
    border-color: #0E7843;
}

.button svg {
    vertical-align: middle;
    margin-right: 10px;
    height: 100%;
    width: 52px;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    padding: 14px;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.button svg path {
    fill: #fff;
}

.button--block {
    display: block;
    width: 100%;
}

#login {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #222;
    border-radius: 5px;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

@media screen and (max-width: 768px) {
    body {
        background-color: #222;
    }
    #login {
        box-shadow: none;
    }
}

.separator {
    margin: 20px 0;
    position: relative;
}

.separator::before {
    content: '';
    display: block;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 40px 0;
}

.separator span {
    background-color: #222;
    padding: 0 20px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: #999;
    z-index: 1;
}

.logo {
    display: block;
    margin: 20px auto 40px;
    max-width: 200px;
}

/** FORM **/
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    background: #222;
    color: #fff;
    height: 52px;
}


.form-input {
    position: relative;
}

.form-input span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: #999;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 8px;
}

.form-input input {
    padding-left: 52px;
}

/* SOCIAL LOGIN BUTTONS */
.button--facebook {
    border-color: #3b5998;
    background-color: #3b5998;
    color: #fff;
}

.button--facebook:hover {
    background-color: #2d4373;
    border-color: #2d4373;
}

.button--google {
    border-color: #dd4b39;
    background-color: #dd4b39;
    color: #fff;
}

.button--google:hover {
    background-color: #c23321;
    border-color: #c23321;
}