/* Made with love by Mutiullah Samim */

@import url('https://fonts.googleapis.com/css?family=Numans');

html, body {
    background-image: url('http://getwallpapers.com/wallpaper/full/a/5/d/544750.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    font-family: 'Numans', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    margin-top: auto;
    margin-bottom: auto;
    width: 100%;
    max-width: 400px;
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social_icon span {
    font-size: 60px;
    margin-left: 10px;
    color: #FFC312;
}

.social_icon span:hover {
    color: white;
    cursor: pointer;
}

.card-header h3 {
    color: white;
    text-align: center;
}

.social_icon {
    position: absolute;
    right: 20px;
    top: -45px;
}

.input-group-prepend span {
    width: 50px;
    background-color: #0bd230;
    color: black;
    border: 0 !important;
}

input:focus {
    outline: 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: #0bd230;
    width: 100px;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
}

.login_btn:hover {
    color: black;
    background-color: white;
}

.links {
    color: white;
    text-align: center;
}

.links a {
    margin-left: 4px;
    color: #0bce63;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .card {
        width: 90%;
        max-width: 350px;
    }

    .social_icon {
        top: -35px;
    }

    .social_icon span {
        font-size: 50px;
    }

    .card-header h3 {
        font-size: 24px;
    }

    .input-group-prepend span {
        width: 40px;
    }

    .login_btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .card {
        width: 100%;
        max-width: 300px;
    }

    .social_icon {
        top: -25px;
    }

    .social_icon span {
        font-size: 40px;
    }

    .card-header h3 {
        font-size: 20px;
    }

    .input-group-prepend span {
        width: 35px;
    }

    .login_btn {
        width: 100%;
    }
}