
                        form input,
                        form textarea {
                            width: 100%;
                            padding: 12px;
                            margin-bottom: 16px;
                            border: 1px solid #ccc;
                            border-radius: 12px;
                            background-color: #fff;
                            font-size: 16px;
                            box-sizing: border-box;
                        }

                        form textarea {
                            height: 180px;
                            resize: vertical;
                        }

                        form button {
                            background-color: #4CAF50;
                            color: white;
                            padding: 12px 20px;
                            border: none;
                            border-radius: 12px;
                            cursor: pointer;
                            font-size: 16px;
                        }

                        form button:hover {
                            background-color: #45a049;
                        }

                        form label {
                            font-weight: bold;
                            margin-bottom: 4px;
                            display: block;
                        }
                    