-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
47 lines (40 loc) · 932 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700');
*{
border-radius: 0px !important;
font-family: "Poppins", sans-serif;
}
body{
background-color: #e1e1e1 !important;
display: flex;
align-items: center;
height: 100vh;
}
.card{
border: none !important;
display: flex;
align-items: center;
justify-content: center;
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.card-header{
color: white !important;
background: #3366FF !important;
text-align: center;
}
.card-header > img{
width: 180px;
}
.input-container input{
width: 40px;
height: 40px;
}
.form-control:focus{
box-shadow: none !important;
border: 1px solid #3366FF !important;
}
.verify-btn{
border-radius: 20px !important;
border: 0px !important;
width: 140px;
background-color: #3366FF !important;
}