 body {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
      			background-image: url(images/bg4.gif);
          background-repeat: no-repeat;
          background-size: cover;
        }

        .login-container {
        background-color: rgba(255, 255, 255, 0.6); /* Membuat latar belakang lebih transparan */
        color: #333;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 1.9);
        width: 450px;
        /*max-height: 80vh; /* Batas maksimum tinggi sebesar 80% tinggi viewport */
        overflow-y: auto; /* Tambahkan scrollbar jika konten melebihi tinggi maksimum */
        text-align: center;
    }


        .login-container h2 {
            margin-bottom: 3px;
            font-size: 28px;
            color: #333;
        }

        .login-container p {
            font-size: 14px;
            margin-bottom: 3px;
            color: #666;
        }

        .login-container input[type="text"],
        .login-container input[type="password"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 8px;
            border: none;
            border-radius: 10px;
            background-color: #f1f1f1;
            font-size: 16px;
            color: #333;
        }

        .login-container input[type="text"]:focus,
        .login-container input[type="password"]:focus {
            outline: none;
            background-color: #e1e1e1;
        }

        .login-container .button {
            width: 48%;
            padding: 12px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .login-container .button:hover {
            background: linear-gradient(135deg, #6b73ff, #9e58ff);
        }

        .login-container select {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 10px;
            background-color: #f1f1f1;
            color: #333;
            margin-bottom: 10px;
        }

        .button-container {
            display: flex;
            justify-content: space-between;
        }

        .login-container .social-login {
            display: flex;
            justify-content: space-around;
            margin-top: 10px;
        }
		.social-login1 img {
            width: 125px;
            height: 60px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .social-login1 img:hover {
            transform: scale(1.1);
        }


        .social-login img {
            width: 200px;
            height: 60px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .social-login img:hover {
            transform: scale(1.1);
        }

        #footer {
            margin-top: 10px;
            font-size: 12px;
            color: #000 !important; /* Warna font hitam */
        }

        #footer p a {
            color: #000 !important; /* Warna font hitam untuk link */
            text-decoration: none !important; /* Menghilangkan underline */
        }

        #footer p a:hover {
            color: #764ba2 !important; /* Warna berubah saat hover */
            text-decoration: none !important; /* Tetap tanpa underline saat hover */
        }
