-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.css
109 lines (107 loc) · 1.82 KB
/
login.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
*{
box-sizing: border-box;
margin:0;
padding: 0;
font-size: 20px;
}
body{
background-image: url("Online-voting.jpg");
background-position: center;
color: white;
}
.form{
height: 800px;
width: auto;
border: 2px solid white;
padding: 18px 13px;
display: flex;
justify-content: center;
}
.form-box {
/* border: 2px solid black; */
background-color: rgb(15, 15, 15);
border-radius: 65px;
/* background-image: url("vote.png"); */
margin: 76px 76px;
padding: 70px 40px;
}
.form h1{
/* border:2px solid white; */
margin: 20px 0px;
padding: 20px 0px;
text-align: center;
font-size: 45px;
}
.application-no{
margin: 10px 5px;
padding: 5px 5px;
border-radius: 10px;
}
.password{
margin: 10px 47px;
padding: 5px 5px;
}
.dob{
margin: 10px 21px;
padding: 5px 5px;
}
.otp{
margin: 10px 85px;
padding: 5px 5px;
}
.captcha{
margin: 10px 10px;
padding: 5px 5px;
}
#buttons{
margin: 50px 132px;
padding: 5px 5px;
}
.captcha{
display: flex;
justify-content: center;
align-items: center;
}
#refresh{
float: left;
margin: 0px 5px;
padding: 0px 30px;
width: 20px;
}
#textinput{
width: 133px;
height: 28px;
display: flex;
}
#capt{
width: 133px;
height: auto;
float: left;
margin: 0px 5px;
padding: 0px 10px;
}
.captcha button{
margin: 0px 10px;
padding: 0px 10px;
height: 20px;
width: 80px;
cursor: pointer;
border: none;
border-radius: 5px;
}
#refresh img{
height: auto;
padding: 5px 5px;
margin: 5px -35px;
cursor: pointer;
}
#submit{
border-radius: 5px;
background-color:rgb(65, 235, 65);
box-shadow: 2px 2px white;
}
#reset{
border-radius: 5px;
background-color:crimson;
box-shadow: 2px 2px white;
}