/* ---------- HEADER ---------- */
header nav ul li:nth-child(6) {
    color: #7850e4;
}

/* ---------- MAIN ---------- */
body {
}
/*.image-wrap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}*/
#content-wrapper {
    background-image: url(../img/background-shape-2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.image-wrap img {
  width: 100%;
  animation: move 20s ease infinite alternate;
  /* Add infinite to loop. */

  -ms-animation: move 20s ease infinite alternate;
  -webkit-animation: move 20s ease infinite alternate;
  -0-animation: move 20s ease infinite alternate;
  -moz-animation: move 20s ease infinite alternate;
  position: absolute;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left;
    transform: scale(1.0);
    -ms-transform: scale(1.0);
    /* IE 9 */

    -webkit-transform: scale(1.0);
    /* Safari and Chrome */

    -o-transform: scale(1.0);
    /* Opera */

    -moz-transform: scale(1.0);
    /* Firefox */
  }
  100% {
    transform: scale(1.2);
    -ms-transform: scale(1.2);
    /* IE 9 */

    -webkit-transform: scale(1.2);
    /* Safari and Chrome */

    -o-transform: scale(1.2);
    /* Opera */

    -moz-transform: scale(1.2);
    /* Firefox */
  }
}


@media (max-width: 500px) {
    body {
        background-position: top;
    }
}

#main {
    height: calc(100vh - 100px);
}

#main #main-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main #main-content h2 {
    margin-bottom: 20px;
}

#main #main-content #card {
    min-height: 380px;
    background-color: #fff;
    width: 380px;
    box-shadow: 0px 1px 2px 1px rgba(128, 128, 128, 0.65);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

#main #main-content #card #buttons {
    display: flex;
    color: white;
}

#main #main-content #card #buttons #login,
#main #main-content #card #buttons #signup {
    width: 100%;
    padding: 10px 0;
    color: white;
}

#main #main-content #card #buttons #login p,
#main #main-content #card #buttons #signup p {
    text-align: center;
    font-size: 1.5rem;
}

#main #main-content #card #buttons #login {
    background-color: #a386f1;
}

#main #main-content #card #buttons #signup {
    background-color: #7850e4;
}

#main #main-content #card #info {
    border-top: 3px solid #7850e4;
    padding: 30px;
}

#main #main-content #card #info form input {
    border: none;
    /*height: 30px;*/
    padding: 12px 12px 12px 12px;
    border-bottom: 1px solid rgba(163, 134, 241, 0.5);
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

#main #main-content #card #info #terms {
    font-size: 1.3rem;
    margin-top: 10px;
}

#main #main-content #card #info #terms #underline {
    text-transform: uppercase;
    text-decoration: underline;
}

#main #main-content #create {
    background-color: #7850e4;
    color: #fff;
    margin-left:15%;
    /*border-top-right-radius: 2% 10px;
    border-bottom-right-radius: 2% 10px;
    border-top-left-radius: 2% 10px;
    border-bottom-left-radius: 2% 10px;*/
    border: none;
    box-shadow: 0px 1px 2px 1px rgba(128, 128, 128, 0.65);
}

#main #main-content #create:hover {
    background-color:#9979ee;
}
@media (max-width: 400px) {
        #main #main-content #card {    
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
        margin-bottom: 20px;
        }
        h2 {
            font-size: 30px;
            text-align: center;
            padding: 10px;
            margin-top: 60px;
        }
        #main {
            height: calc(100vh - 0px);
        }
        #main #main-content {
            height: unset;        
        }
}

/*# sourceMappingURL=login.css.map */
