        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 110vh;
            background: #e8f6ff;
            padding: 20px;
        }

        /* Container */
        #HeaderForm {
            font-size: 1.3em;
            margin-bottom: 10px; 
            color: #333;
        }

        .form-container {
            background: white;
            padding: 20px;
            border-radius: 24px;
            box-shadow: 0 15px 15px #8AD3FF;
            width: 100%;
            max-width: 800px;
            text-align: center;
        }

        #Aspirasiku {
            height: 10%;
            width: 10%;
            margin-bottom: 10px;
            transform: scale(2);
        }

        /* Input Area */
        textarea {
            width: 100%;
            height: 230px;
            border: none;
            font-size: 16px;
            padding: 18px;
            border-radius: 16px;
            min-height: 160px;
            background-color: white;
            transition: all 0.3s ease;
            box-shadow: 0 0 8px inset rgba(43, 75, 255, 0.2);
            resize: vertical; /* Agar user bisa tarik ukuran */
        }

        textarea:focus {
            outline: none;
        }

        /* Button */
        button {
            width: 100%;
            height: 100%;
            background: #1178f5;
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, background 0.3s;
        }

        button:hover {
            background: white;
            color: #1178f5;
            border: 2px solid #1178f5;
            transform: translateY(-2px);
        }

        /* Gaya saat tombol disable (Loading) */
        button:disabled {
            background: white;
            color: #ccc;
            border: 2px solid #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .button-area {
            height: 50px;
            width: auto;
            display: flex;
            border-radius: 15px;
            justify-content: flex-end;
            align-items: flex-end;
            margin-top: 20px;
        }