-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (50 loc) · 981 Bytes
/
style.css
File metadata and controls
59 lines (50 loc) · 981 Bytes
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
* {
margin: 0;
padding: 0;
text-decoration: none;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.msg {
color: red;
font-size: 18px;
}
.form {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #e2d7f7;
}
.form form {
background-color: rgb(230, 224, 224);
text-align: center;
box-shadow: 0px 6px 20px rgb(155, 154, 154);
border-radius: 10px;
padding: 2rem;
width: 28rem;
}
.form form h2 {
margin-bottom: 1.5rem;
}
.form form .form-group {
margin-bottom: 15px;
}
.form form input {
padding: 10px 15px;
font-size: 15px;
width: 100%;
box-sizing: border-box;
}
.form form button {
width: 100%;
margin-top: 10px;
background-color: #783595;
color: rgb(231, 222, 222);
border-radius: 10px;
font-size: 18px;
}
.form form p{
font-size: 15px;
margin-top: 8px;
}