| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /* You can add global styles to this file, and also import other style files */
- html, body { height: 100%; }
- body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; }
- .container {
- width: 300px;
- margin: 0 auto;
- padding: 20px;
- border: 1px solid #ccc;
- background-color: #f2f2f2;
- }
- h2 {
- text-align: center;
- }
- .form-group {
- margin-bottom: 15px;
- }
- label {
- display: block;
- font-weight: bold;
- }
- input[type="text"],
- input[type="password"] {
- width: 100%;
- padding: 5px;
- font-size: 16px;
- border-radius: 5px;
- border: 1px solid #ccc;
- }
- button[type="submit"] {
- width: 100%;
- padding: 10px;
- font-size: 16px;
- background-color: orange !important;
- color: white;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- }
- button[type="submit"]:hover {
- background-color: orange !important;
- }
|