/* * styles.css * * This file contains the CSS styles for the application. * * Copyright (c) 2023 My Company */ /* Base Styles */ * { margin: 0; padding: 0; } body { font-family: Arial, sans-serif; background-color: #f5f5f5; } /* Header Style */ .header { background-color: #3498db; color: white; padding: 15px; text-align: center; } .header h1 { margin-bottom: 0; } /* Main Content Area */ .container { max-width: 800px; margin: auto; padding: 20px; background-color: white; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } /* Form Styling */ .form-group { margin-bottom: 15px; } .form-group label { display: block; margin-top: 10px; font-weight: bold; } .form-group input, .form-group select { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; } /* Button Styling */ .btn-primary { background-color: #2ecc71; color: white; padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; } .btn-primary:hover { background-color: #27ae60; } /* Responsive Styles */ @media (max-width: 600px) { .container { padding: 10px; } .form-group label { margin-top: 5px; } }