-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
58 lines (52 loc) · 1.03 KB
/
App.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
body {
background: rgb(2, 0, 36);
background: radial-gradient(
circle,
rgba(2, 0, 36, 1) 0%,
rgba(30, 54, 59, 1) 0%,
rgba(93, 93, 116, 1) 100%
);
}
.container {
display: flex !important;
flex-direction: column;
justify-content: center;
align-items: center;
height: 90vh;
max-width: 450px;
width: 100%;
margin: auto;
}
.container > form {
width: 100%; /* Changed width to 100% to occupy the entire width of the container */
max-width: 60%; /* Set max-width to maintain the desired width */
border: 1px solid #dfdfdf;
padding: 20px;
border-radius: 5px;
background: #fff;
}
pre {
width: 70%;
color: #f0e8e8;
font-size: larger;
}
button {
background: #0563b4 !important;
}
p {
color: rgb(227, 192, 192);
}
.field{
color: #0563b4;
font-size: 20px;
font-weight: bold;
}
.login{
background: #0563b4 !important;
color: white !important;
border: none !important;
border-radius: 5px !important;
padding: 10px !important;
margin-top: 10px !important;
cursor: pointer !important;
}