body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f4f4f4; display: flex; justify-content: center; align-items: center; height: 100vh; } .container { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); max-width: 500px; width: 100%; margin: 20px; } h1 { font-size: 24px; margin-bottom: 10px; text-align: center; color: #333; } h2 { font-size: 20px; margin-bottom: 20px; text-align: center; color: #666; } .company-name { font-size: 22px; font-weight: bold; text-align: center; color: #0066cc; margin-bottom: 10px; } .form-group { margin-bottom: 15px; } label { display: block; margin-bottom: 5px; font-weight: bold; color: #333; } textarea, input[type="text"], input[type="number"] { width: 90%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; color: #333; } textarea { min-height: 80px; resize: vertical; } .link { display: block; margin-top: 20px; text-align: center; color: #0066cc; text-decoration: none; font-size: 16px; } .link:hover { text-decoration: underline; }