main
css 81 lines 1.42 KB
Raw
1 body {
2 background-color: #131313;
3 color: #d4d4d4;
4 font-family: "Rubik", Arial, Helvetica, sans-serif;
5 display: flex;
6 justify-content: center;
7 align-items: center;
8 height: 100vh;
9 margin: 0;
10 }
11
12 button,
13 input {
14 font-family: "Rubik", Arial, Helvetica, sans-serif;
15 }
16
17 .login-container {
18 display: flex;
19 justify-content: center;
20 align-items: center;
21 width: 100%;
22 }
23
24 .login-form {
25 background-color: #1a1a1a;
26 padding: 2rem;
27 border-radius: 1.125rem;
28 box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
29 width: 100%;
30 max-width: 400px;
31 text-align: center;
32 }
33
34 .logo {
35 width: min(57.75vw, 14.85rem);
36 height: auto;
37 margin-bottom: 2rem;
38 }
39
40 .input-group {
41 margin-bottom: 1.5rem;
42 text-align: left;
43 }
44
45 .input-group label {
46 display: block;
47 margin-bottom: 0.5rem;
48 color: #737a81;
49 }
50
51 .input-group input {
52 width: 100%;
53 padding: 0.75rem;
54 border: 1px solid #444444a8;
55 border-radius: 0.5rem;
56 background-color: #131313;
57 color: #d4d4d4;
58 font-size: 1rem;
59 box-sizing: border-box; /* Added for consistent padding */
60 }
61
62 button {
63 width: 100%;
64 padding: 0.75rem;
65 border: none;
66 border-radius: 0.5rem;
67 background-color: #4248f1;
68 color: white;
69 font-size: 1rem;
70 cursor: pointer;
71 transition: background-color 0.3s ease;
72 }
73
74 button:hover {
75 background-color: #353bc5;
76 }
77
78 .error {
79 color: #cf6679;
80 margin-top: 1rem;
81 }