        body {
            max-width: 100%;
            font-family: Arial, sans-serif;
            margin: 20pt auto;
            background-color: #1a1a1a;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }


        /*
        DESCRIPTION
        */
        .container {
            padding: 5pt 10pt 5pt 10pt;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        h1 {
            font-size: 2em;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        p.description {
            font-size: 1rem;
            margin-bottom: 30px;
            color: #555;
        }

        /******/
        /* FORM */
        /*******/
        
        form {
            padding: 10pt 5pt 5pt 10pt;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            font-family: 'Roboto', sans-serif;
        }

        /* Input field styling */
        input {
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            font-size: 16px;
            color: #333;
            background-color: #f8f9fa;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        input[type="text"] {
            width: 100%;
        }

        input[type="text"]:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
        }

        /* Placeholder styling */
        input::placeholder {
            color: #999;
            font-size: 14px;
        }

        
