* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f4f4f4;
            overflow: hidden;
        }
        .container {
            display: flex;
            width: 100vw;
            height: 100vh;
            max-width: 1200px;
            max-height: 700px;
            border-radius: 20px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            animation: slideIn 1s ease-out;
            border: 5px solid #ddd;
        }
        .login, .gambar {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
        }
        .login {
            background-color: #ffffff;
            text-align: center;
            animation: fadeInLeft 1s ease-out;
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
        }
        .gambar {
            
           background: url('../aset_gambar/bg.jpg') center/cover no-repeat;

            animation: fadeInRight 1s ease-out;
            border-top-right-radius: 20px;
            border-bottom-right-radius: 20px;
        }
        .login img {
            margin-bottom: 1rem;
        }
        .login h3 {
            font-size: 24px;
            color: #1A73E8;
            font-weight: bold;
        }
        .login h5 {
            font-size: 20px;
            color: #FF5722;
            font-weight: bold;
            margin-top: 1rem;
        }
        .login label {
            display: block;
            text-align: left;
            color: #333;
            font-size: 18px;
            font-weight: bold;
            margin: 0.5rem 0 0.2rem;
        }
        .login input {
            width: 100%;
            max-width: 450px;
            padding: 0.75rem;
            margin: 0.3rem 0 1rem;
            border-radius: 5px;
            border: 1px solid #ccc;
            font-size: 16px;
        }
        .login button {
            width: 100%;
            max-width: 450px;
            padding: 0.75rem;
            margin-top: 1rem;
            background-color: #4CAF50;
            color: white;
            font-size: 16px;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .login button:hover {
            background-color: #45a049;
        }
        .buat-db {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            margin-top: 1rem;
            background-color: rgba(100, 100, 100, 0.8);
            color: white;
            font-size: 16px;
            font-weight: bold;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s ease, filter 0.3s ease;
        }
        .buat-db:hover {
            background-color: #666;
            filter: brightness(0.9);
        }
        
        .btn-back {
        margin-top: 15px;
        text-align: center;
        }

        .btn-back a {
        text-decoration: none;
        color: white;
        background: linear-gradient(135deg, #4f46e5, #06b6d4);
        padding: 10px 20px;
        border-radius: 25px;
        display: inline-block;
        font-weight: 600;
        transition: 0.3s;
        }

        .btn-back a:hover {
        transform: translateY(-2px);
        opacity: 0.9;
        }
        
        
        footer {
            margin-top: 1rem;
            color: #666;
            font-size: 14px;
        }

        @keyframes slideIn {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-100%); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(100%); }
            to { opacity: 1; transform: translateX(0); }
        }