anibalronald commited on
Commit
7df9b2a
·
verified ·
1 Parent(s): f3a08f9

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +58 -27
style.css CHANGED
@@ -1,28 +1,59 @@
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
- }
5
-
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
- }
10
-
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
- }
17
-
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
- }
25
-
26
- .card p:last-child {
27
- margin-bottom: 0;
28
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #f4f4f9;
4
+ margin: 0;
5
+ padding: 20px;
6
+ }
7
+
8
+ .container {
9
+ max-width: 400px;
10
+ margin: auto;
11
+ background: white;
12
+ padding: 20px;
13
+ border-radius: 10px;
14
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
15
+ }
16
+
17
+ h1, h2 {
18
+ text-align: center;
19
+ color: #333;
20
+ }
21
+
22
+ form {
23
+ margin-bottom: 20px;
24
+ }
25
+
26
+ label {
27
+ display: block;
28
+ margin-bottom: 5px;
29
+ font-size: 14px;
30
+ }
31
+
32
+ input {
33
+ width: 100%;
34
+ padding: 10px;
35
+ margin-bottom: 10px;
36
+ border: 1px solid #ccc;
37
+ border-radius: 4px;
38
+ }
39
+
40
+ button {
41
+ width: 100%;
42
+ padding: 10px;
43
+ background-color: #007BFF;
44
+ color: white;
45
+ border: none;
46
+ border-radius: 4px;
47
+ cursor: pointer;
48
+ }
49
+
50
+ button:hover {
51
+ background-color: #0056b3;
52
+ }
53
+
54
+ #message {
55
+ text-align: center;
56
+ color: red;
57
+ font-weight: bold;
58
+ }
59
+