@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css?family=Lato');

body {
    background: linear-gradient(rgb(0, 0, 0), rgba(0, 255, 191, 0.7)), url(https://res.cloudinary.com/jenelle-miller/image/upload/v1518619522/doodles_cuau2z.png) repeat;
    color: #ffffff;
    font-family: 'Lato', 'Arial', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    height: 100%;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container img {
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.container img:hover {
    transform: scale(1.05);
}

.container h1 {
    font-family: 'Montserrat', 'Arial', sans-serif;
    color: #ffffff;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.form-background {
    background: #000000a3;
    width: 420px;
    border-radius: 25px;
    padding: 32px;
    -webkit-box-shadow: 0px 15px 88px -37px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0px 15px 88px -37px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 15px 88px -37px rgba(0, 0, 0, 0.17);
}

form {
    text-transform: capitalize;
    font-family: 'Lato', 'Arial', sans-serif;
    text-align: center;
}

input {
    width: 70%;
    margin-bottom: 15px;
    border-radius: 30px;
    border: 1px solid #DAE2F1;
    padding: 15px 20px;
    color: #8498AF;
    font-size: .9rem;
    transition: .4s;
}

input:last-child {
    margin-bottom: 0;
}

input:focus {
    border-color: #8D6CC7;
    outline: none;
}

[type="submit"] {
    background: #00fcc5;
    border-radius: 30px;
    padding: 16px 30px;
    width: 100%;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font-size: .8rem;
    transition: .4s;
    font-family: 'Montserrat', 'Arial', sans-serif;
    border: none;
    box-shadow: none;
    margin: 0;
}

[type="submit"]:hover {
    background: darken(#8D6CC7, 3%);
    cursor: pointer;
}

.sign-up-divider {
    font-family: 'Montserrat', 'Arial', sans-serif;
    text-align: center;
    color: #C4C8D4;
    font-size: .8rem;
    letter-spacing: .5px;
    padding: 24px 0;
}

.sign-up-divider::before {
    content: '';
    display: inline-block;
    width: 27%;
    margin-right: 5%;
    height: 1px;
    background: #DAE2F1;
    vertical-align: middle;
}

.sign-up-divider::after {
    content: '';
    display: inline-block;
    width: 27%;
    margin-left: 5%;
    height: 1px;
    background: #DAE2F1;
    vertical-align: middle;
}

.social-media-icons {
    text-align: center;
    color: #fff;
}

.social-media-icons li {
    margin-right: 10px;
    list-style: none;
    display: inline-block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    line-height: .8rem;
    transition: .3s;
    display: relative;
    padding-top: 15px;
}

.social-media-icons li a {
    color: #fff;
    vertical-align: middle;
    text-align: center;
    top: 10px;
}

li.google {
    background: #EA5859;
}

li.google:hover {
    background: darken(#EA5859, 6%);
    cursor: pointer;
}

li.facebook {
    background: #527ED5;
}

li.facebook:hover {
    background: darken(#527ED5, 6%);
    cursor: pointer;
}

li.twitter {
    background: #61BDED;
}

li.twitter:hover {
    background: darken(#61BDED, 6%);
    cursor: pointer;
}

.login {
    text-align: center;
    margin-top: 24px;
    font-size: .8rem;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.login a {
    margin-left: 4px;
    text-decoration: none;
    color: #00ffb3;
    transition: .3s;
}

.login a:hover {
    color: darken(#8D6CC7, 3%);
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}
