-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathotp.css
42 lines (40 loc) · 820 Bytes
/
otp.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
#container{
width:30%;
height:400px;
/* border:1px solid blue; */
margin: 30px auto;
background-color: #d1e8ff;
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
border-radius: 5px;
}
h2{
font-family: Inter, Roboto, Arial, sans-serif;
text-align: center;
padding-top: 30px;
}
p{
font-family: Inter, Roboto, Arial, sans-serif;
text-align: center;
font-weight: bold;
color:rgb(14, 182, 28)
}
#input{
width:50%;
height:30px;
margin: 40px 0px 0px 85px;
padding-left: 30px;
background-color: white;
}
button{
display: block;
margin: 50px auto;
background-color: rgb(17, 90, 226);
color:white;
width:30%;
height:40px;
border:none;
border-radius: 5px;
}
button:hover{
cursor: pointer;
}