-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
46 lines (43 loc) · 719 Bytes
/
Copy pathindex.css
File metadata and controls
46 lines (43 loc) · 719 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
max-width: 80%;
/* background-color:rgb(188, 126, 247); */
padding: 34px;
margin: auto;
}
.container h1 ,p {
text-align: center;
}
input , textarea{
width: 80%;
margin: 11px 0;
padding: 10px;
font-size: 15px;
border: 2px solid black;
border-radius: 6px;
outline: none;
}
form{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.btn{
color: white;
background-color: purple;
padding: 7px 10px;
font-size: 20px;
border: 2px solid white;
border-radius: 14px;
cursor: pointer;
}
.bg{
position: absolute;
z-index: -1;
opacity: 0.6;
}