


.main {
    width: 390px;
    height: 470px;
    background: #fff;
    margin: 30px auto;
    text-align: center;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.2);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.logo {
    top: 50px;
    width: 100px;
    height: 100px;
    margin: auto;
    position: relative;
}
.logo:hover {
    -webkit-animation: rotation 0.9s infinite linear;
    -webkit-box-shadow: 0 0 10px #2997c3;
    box-shadow: 0 0 10px #2997c3;
}
.logo h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 200;
    line-height: 100px;
}
form {
    top: 75px;
    position: relative;
}
form input {
    display: block;
    margin: 10px auto;
}

form h4 {
    font-size: 12px;
    /*margin-top: 50px;*/
}

h4 a {
    color: #2997c3;
    font-weight: bold;
    text-decoration: none;
    transition: 200ms ease-in-out;
}
h4 a:hover {
    color: #000;
}
input[type='email'], input[type='password'] {
    width: 80%;
    outline: none;
    border-top: 0;
    color: #2997c3;
    border-left: 0;
    border-right: 0;
    font-size: 14px;
    padding: 24px 24px 24px 37px;
    font-weight: 300;
    border-bottom: 1px solid #2997c3;
}




input[type='submit'], input[type='reset'] {
    color: #fff;
    width: 150px;
    height: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 4px;
    transition: 200ms ease-out;
    -webkit-box-shadow: 0 0 10px #2997c3;
    box-shadow: 0 0 10px #2997c3;

    background: #2997c3; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}



input[type='submit']:hover {
    width: 155px;
    height: 52px;
    transform: scale(1.1);
    box-shadow: 0 0 40px #2997c3;
}
.fa-user {
    color: #2997c3;
    position: absolute;
    top: 25px;
    left: 56px;
    font-size: 18px !important;
    cursor: text;
    transition: .2s ease-out;
}

.fa-lock {
    color: #2997c3;
    position: absolute;
    top: 105px;
    left: 56px;
    font-size: 18px !important;
    cursor: text;
    transition: .2s ease-out;
}
.fa-redo {
    color: #2997c3;
    position: absolute;
    top: 185px;
    left: 56px;
    font-size: 18px !important;
    cursor: text;
    transition: .2s ease-out;
}


[placeholder]::-webkit-input-placeholder  {
    color: #2997c3;
    padding-left: 10px;
}
[placeholder]:focus::-webkit-input-placeholder {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
    opacity: 0;
}


/*  FOLLOW*/
.Follow {	  background:url("https://pbs.twimg.com/profile_images/959092900708544512/v4Db9QRv_bigger.jpg")no-repeat center / contain;
            width: 50px;
            height: 50px;
            bottom: 9px;
            right: 20px;
            display:block;
            position:fixed;
            border-radius:50%;
            z-index:999;
            animation:  rotation 10s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}



@media only screen and (max-width: 767px) {

    .main {
        width: 100%;
        height: 550px;
        background: #fff;
        margin: 100px auto;
        text-align: center;
        border-radius: 10px;
        -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.2);
        box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }

}

