        @import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css');
        @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #FFEDD5; /* Peach pastel */
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            box-sizing: border-box;
        }

        .hero-section {
            background: #FFC4B0; /* Light Peach Accent */
            color: #4B2C20;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            position: relative;
            min-height: calc(100vh - 80px); /* Menyesuaikan tinggi hero-section agar bertemu dengan footer */
            width: 100%;
        }

        .login-icon {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #4B2C20;
            z-index: 10;
        }

        .cta-button {
            background-color: #FF6347;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin-top: 20px;
            transition: background-color 0.3s ease-in-out, transform 0.2s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            background-color: #FF4500;
            transform: scale(1.05);
        }

        footer {
            background-color: #FFC4B0; /* Pastel Pink */
            color: #4B2C20;
            text-align: center;
            font-size: 0.75rem; /* Smaller font */
            border-top: 2px solid #FFEDD5;
            padding: 8px 15px; /* Reduced padding */
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
            line-height: 1.2; /* Tighter line height */
        }

        footer p {
            margin-bottom: 0 !important; /* Remove margin */
        }

        footer a {
            color: #FF6347;
            text-decoration: none;
            font-weight: bold;
        }

        footer a:hover {
            text-decoration: underline;
            color: #FF4500;
        }

        .disclaimer-text {
            margin: 5px 0;
            font-style: italic;
            line-height: 1.4;
            font-size: 0.85rem;
        }

        .disclaimer-text b {
            color: #FF4500;
            font-weight: bold;
        }

        footer .copyright {
            margin-top: 5px;
            font-size: 0.75rem;
            color: #4B2C20;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        #daftar {
            padding-bottom: 100px; /* Memberikan jarak cukup dari footer */
        }


        .signup-form {
            display: flex;
            flex-direction: column; /* Membuat elemen di dalam form tersusun vertikal */
            align-items: normal; /* Menempatkan elemen di tengah secara horizontal */
        }

        .signup-form button {
            margin-top: 20px; /* Tambahkan jarak atas untuk spasi */
            padding: 10px 30px; /* Sesuaikan ukuran padding tombol */
            font-size: 1rem; /* Ukuran font yang proporsional */
            border-radius: 5px; /* Membuat sudut tombol melengkung */
            background-color: #28a745; /* Warna hijau */
            color: white; /* Warna teks putih */
            border: none; /* Hilangkan border */
            cursor: pointer; /* Ubah kursor menjadi pointer saat hover */
            transition: background-color 0.3s ease; /* Tambahkan transisi untuk hover */
        }

        .signup-form button:hover {
            background-color: #218838; /* Warna hijau lebih gelap saat hover */
        }

        .signup-form button {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #FF6347;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease-in-out;
        }


        .signup-form button:hover {
            background-color: #FF4500;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 30px 15px;
            }

            h1 {
                font-size: 1.8rem;
                margin-bottom: 10px;
            }

            p {
                font-size: 1rem;
                margin-bottom: 15px;
            }

            .cta-button {
                font-size: 0.9rem;
                padding: 10px 20px;
            }

            footer {
                padding: 6px 10px; /* Even smaller on mobile */
                font-size: 0.7rem; /* Smaller font on mobile */
            }

            .disclaimer-text {
                font-size: 0.75rem;
            }
        }

        @media (min-width: 1200px) {
            .hero-section {
                padding: 50px;
            }

            h1 {
                font-size: 2.5rem;
                margin-bottom: 20px;
            }

            p {
                font-size: 1.2rem;
                margin-bottom: 20px;
            }

            .cta-button {
                font-size: 1.1rem;
                padding: 15px 30px;
            }

            footer {
                padding: 10px 15px; /* Medium padding for large screens */
                font-size: 0.8rem; /* Slightly larger but still compact */
            }
        }   
        
        