body {
    background-image: url("../images/background_repeat.jpg");
    margin: 0;
    font-size: 15px;
}

form {
    width: 500px;
    background: #FFF;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 2px 10px #44444440;
}

.form-login {
    width: 350px;
}

h1 {
    margin: 20px 0 0;
    color: #555;
}

.h1-login {
    font-size: 2em;
    margin-bottom: 40px;
}

h1 + p {
    color: #888;
    margin: 10px 0 30px;
}

label {
    color: #AAA;
}

input:not([type='checkbox']) {
    width: 100%;
    margin-top: 5px;
    padding: 0 10px 0 25px;
    box-sizing: border-box;
    border: solid 1px #EEE;
    border-bottom: solid 1px #CCC;
    border-radius: 12px !important;
    height: 30px;
    line-height: 30px;
    outline: 0;
    font-family: inherit;
    transition: all .2s linear;
}

input:hover {
    border-color: #777;
}

input:focus {
    border-color: #6f7cef;
}

input::placeholder {
    color: #BBB;
}

button {
    display: block;
    width: 50%;
    margin: 20px auto 40px;
    background-color: #0bb783 !important;
    font-family: inherit;
    border: 0 !important;
    height: 40px;
    border-radius: 20px;
    color: #FFF !important;
    font-weight: 500;
    cursor: pointer;
    outline: 0;
    box-shadow: 0 2px 6px #44444440;
    transition: all 0.2s linear;
}

button:hover {
    box-shadow: 0 4px 10px #44444480;
}

p {
    color: #888;
    font-size: 0.7em;
}

a {
    color: #333;
    text-decoration: none;
}


.social {
    margin: 10px 0 30px;
}

.social a {
    background-color: #CCC;
    margin: 0 2px;
    height: 35px;
    width: 35px;
    display: inline-block;
    font-size: 18px;
    line-height: 37px;
    color: #FFF;
    border-radius: 50%;
}

.social a:nth-child(1) {
    background-color: #3c5a98;
}

.social a:nth-child(2) {
    background-color: #24a3f0;
}

.social a:nth-child(3) {
    background-color: #ea4235;
}

.toast {
    width: 500px;
    z-index: 999;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}