/* Made with love by Mutiullah Samim*/

@import url('https://fonts.googleapis.com/css?family=Numans');

html, body {
      height: 100%;
    font-family: sans-serif;
    background-color: #191762;
}

.container {
    height: 100%;
    align-content: center;
}

.card {
    height: 280px;
    margin-top: auto;
    margin-bottom: auto;
    width: 400px;
    background-color: #000000 !important;
    border-width: 0px;
}

.social_icon span {
    font-size: 90px;
    margin-left: 10px;
    color: #191762;
    transform: scale(1);
    animation: pulse 2s infinite;
}

    .social_icon span:hover {
        color: white;
        cursor: pointer;
    }

.card-header h3 {
    color: #ffffff;
}

.social_icon {
    position: absolute;
    right: 20px;
    top: -60px;
}

.input-group-prepend span {
    background-color: #191762;
    color: white;
    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: #ffffff;
    background-color: #191762;
    width: 150px;
}

    .login_btn:hover {
        color: #191762;
        background-color: white;
    }

.links {
    color: white;
}

    .links a {
        margin-left: 4px;
    }

.twofa-input {
    display:none;
}
.twofa .twofa-input
{
    display:flex;
}
.twofa .base-login {
display:none;
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        
    }

    70% {
        transform: scale(1);
       
    }

    100% {
        transform: scale(0.95);
     
    }
}