-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathstyle.css
77 lines (67 loc) · 1.32 KB
/
style.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background-color: rgb(219, 51, 253);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
background-color: white;
width: 700px;
padding: 20px;
border-radius: 10px;
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
}
h1 {
font-size: 28px;
margin: 10px;
}
input {
width: 90%;
height: 40px;
border: 2px solid rgba(0, 0, 0, 0.6);
padding: 5px 10px;
font-size: 18px;
margin-bottom: 10px;
}
.btn {
background-color: rgb(219, 51, 253);
padding: 10px 30px;
border-radius: 10px;
border: 2px solid rgba(0, 0, 0, 0.4);
font-size: 18px;
margin-top: 5px;
font-weight: 500;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
cursor: pointer;
/* display: inline-block; */
}
.error {
background-color: rgb(255, 139, 139);
padding: 5px 0;
width: 70%;
text-align: center;
display: none;
}
h3 {
margin-top: 5px;
font-size: 22px;
}
.message {
font-size: 18px;
color: rgb(44, 29, 255);
font-weight: bold;
margin-top: -5px;
}