Reaperxxxx commited on
Commit
2a2345e
·
verified ·
1 Parent(s): 25c9080

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +64 -18
style.css CHANGED
@@ -1,28 +1,74 @@
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
+ background-color: #0b2545; /* Dark blue background */
3
+ font-family: Arial, sans-serif;
4
+ display: flex;
5
+ justify-content: center;
6
+ align-items: center;
7
+ height: 100vh;
8
+ margin: 0;
9
  }
10
 
11
+ form#authForm {
12
+ background-color: #2a6fa9; /* Light blue background */
13
+ width: 300px;
14
+ padding: 20px;
15
+ border-radius: 10px;
16
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
17
+ text-align: center;
18
+ position: relative;
19
  }
20
 
21
+ form#authForm input[type="text"],
22
+ form#authForm input[type="password"] {
23
+ width: calc(100% - 20px);
24
+ margin: 10px 0;
25
+ padding: 8px;
26
+ border: 1px solid #fff;
27
+ border-radius: 5px;
28
+ background-color: #0b4261;
29
+ color: #fff;
30
+ font-size: 14px;
31
  }
32
 
33
+ form#authForm input[type="file"] {
34
+ margin: 15px 0;
35
+ padding: 8px;
36
+ width: 100%;
37
+ background-color: #2a6fa9;
38
+ color: #fff;
39
+ font-size: 14px;
40
+ cursor: pointer;
41
+ text-align: center;
42
+ border: none;
43
  }
44
 
45
+ form#authForm button {
46
+ background-color: #fff;
47
+ color: #2a6fa9;
48
+ font-size: 16px;
49
+ font-weight: bold;
50
+ padding: 10px;
51
+ width: 100%;
52
+ border: none;
53
+ border-radius: 5px;
54
+ cursor: pointer;
55
+ margin-top: 10px;
56
+ }
57
+
58
+ form#authForm button:hover {
59
+ background-color: #e0e0e0;
60
+ }
61
+
62
+ form#authForm::before {
63
+ content: "LOGIN / SIGN UP";
64
+ font-size: 18px;
65
+ font-weight: bold;
66
+ position: absolute;
67
+ top: -25px;
68
+ left: 50%;
69
+ transform: translateX(-50%);
70
+ background-color: #2a6fa9;
71
+ padding: 5px 10px;
72
+ color: #fff;
73
+ border-radius: 5px;
74
  }