/* This file is part of the Skibidiy ECA RRU project and is used for styling the application. It contains all the necessary CSS rules to ensure the application looks good on different devices and has a consistent visual appearance. */ body { margin: 0; font-family: Arial, sans-serif; } .container { padding: 20px; } .header { color: #333; text-align: center; margin-bottom: 40px; } .footer { color: #999; text-align: center; margin-top: 40px; font-size: 14px; } button { background-color: #4CAF50; color: white; border: none; padding: 12px 24px; font-size: 16px; cursor: pointer; } button:hover { background-color: #45a049; } .input-group { display: flex; flex-direction: column; align-items: flex-start; } .input-group input[type="text"] { width: 100%; padding: 10px; margin: 10px 0; } input[type="submit"] { margin-top: 10px; } .error-message { color: red; margin-top: 10px; } .success-message { color: green; margin-top: 10px; }