
        
        .container { 
            margin-top: 10px;
            
        }
        input { 
            padding: 10px; 
            margin: 5px; 
            background-color: #222; /* Dark input field */
            color: white; /* White text */
            border: 1px solid #444; 
            border-radius: 5px;
            
        }
        input::placeholder { 
            color: #aaa; /* Lighter placeholder */
        }
        button { 
            padding: 10px 20px; 
            margin: 5px; 
            background-color: #ff9800; /* Orange button */
            color: white; 
            border: none;
            cursor: pointer;
            border-radius: 5px;
        }
        button:hover { 
            background-color: #e68900; 
        }
    
