-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
42 lines (42 loc) · 719 Bytes
/
Copy pathform.css
File metadata and controls
42 lines (42 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
*{
box-sizing: border-box;
font-family: 'poppins', sans-serif;
}
body{
margin: 0;
padding: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #32cd9c;
}
.container{
width: 350px;
background-color: white;
border-radius: 5px;
padding: 20px;
text-align: center;
}
.container input{
width: 100%;
padding: 10px;
border: none;
border-bottom: 2px solid #777777;
margin-bottom: 20px;
font-size: 16px;
outline: none;
}
.btn{
border: none !important;
cursor: pointer;
background-color: #32cd9c;
margin: 15px 0;
font-size: 16px;
width: 100%;
padding: 14px;
}
.btn:hover{
background-color: #1f7d5f;
color: white;
}