/* Made with love by Mutiullah Samim*/

@import url('https://fonts.googleapis.com/css?family=Numans');

html,body{
background-image: url('https://courses.shanapro.com/wp-content/themes/graphene/images/pic(1).jpg');
background-size: cover;
background-repeat: no-repeat;
height: 100%;
font-family: 'Numans', sans-serif;
}

.container{
height: 100%;
align-content: center;
}

.card{
height: 460px;
margin: auto;
width: 400px;
background-color: rgba(0,0,0,0.5) !important;
}

.social_icon span{
font-size: 60px;
margin-left: 10px;
color: #FFC312;
}

.social_icon span:hover{
color: white;
cursor: pointer;
}

.card-header h3{
color: white;
}

.social_icon{
position: absolute;
right: 20px;
top: -45px;
}

.input-group-prepend span{
width: 50px;
background-color: #19aac6;
color: black;
border:0 !important;
}

input:focus{
outline: 0 0 0 0  !important;
box-shadow: 0 0 0 0 !important;

}

.remember{
color: white;
}

.remember input
{
width: 20px;
height: 20px;
margin-left: 15px;
margin-right: 5px;
}

.login_btn{
color: black;
background-color: #19aac6;
width: 100px;
}

.login_btn:hover{
color: black;
background-color: white;
}

.links{
color: white;
}

.links a{
margin-left: 4px;
}

@import "https://fonts.googleapis.com/css?family=Open+Sans:300,400";
body,
.badgescard,
.firstinfo {
    
    justify-content: center;
    align-items: center;
}

.content {
    position: relative;
    animation: animatop 0.9s cubic-bezier(0.425, 1.14, 0.47, 1.125) forwards;
}

.card-body{
    bottom: -270px;
    position: absolute;
    width : 90%;
    animation: animainbos 0.5s cubic-bezier(0.425, 1.04, 0.47, 1.105) 0.75s forwards;
    
}

.card {
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.badgescard {
    bottom: -70px;
    position: absolute;
    width : 90%;
    animation: animainfos 0.5s cubic-bezier(0.425, 1.04, 0.47, 1.105) 1.50s forwards;
}
@keyframes animatop {
    0% {
        opacity: 0;
        bottom: -500px;
    }
    100% {
        opacity: 1;
        bottom: 0px;
    }
}
@keyframes animainbos {
    0% {
        bottom: -270px;
    }
    100% {
        bottom: 80px;
    }
}

@keyframes animainfos {
    0% {
        bottom: -70px;
    }
    100% {
        bottom: 10px;
    }
}