@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500');

        body {
            min-height: 100vh;
            background:
                linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
                url('../assets/img/bg-login.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Segoe UI', sans-serif;
            padding: 20px;
            overflow-y: auto;
        }

        /* CARD LOGIN */
        .login-card {
            position: relative;
            /* WAJIB */
            width: 100%;
            max-width: 400px;
            background: rgba(255, 255, 255, .95);
            border-radius: 14px;
            padding: 30px 25px 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
        }

        /* LOGO DI POJOK CARD */
        .logo-card {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 10;
        }

        .logo-card img {
            height: 40px;
            width: auto;
        }

        /* HEADER */
        .login-header {
            text-align: center;
            margin-top: 40px;
            margin-bottom: 25px;
        }

        .login-header h4 {
            font-weight: 650;
            margin-bottom: 2px;
        }

        .login-header small {
            color: #6c757d;
        }

        /* BUTTON */
        .btn-login {
            background: #0d6efd;
            border: none;
            font-weight: 800;



        }

        .btn-login:hover {
            background: #084298;
        }

        .card-footer-text {
            font-size: 13px;
            color: #8d2a2a;
        }
    