-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.css
99 lines (98 loc) · 1.56 KB
/
form.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
*{
margin:0px;
padding:0px;
box-sizing: border-box;
}
#lgn{
width: 96%;
display:flex;
gap:50px;
height: auto;
}
#lgn>div:nth-child(1){
width:35%;
}
#lgn>div:nth-child(2){
width:50%;
}
#lgn>div:nth-child(3){
width:10%;
display: flex;
}
div>img{
width: 100%;
height: 100%;
}
form{
display: flex;
flex-direction: column;
padding: 20px;
padding-left: 30px;
gap:30px;
}
h1{
margin-top: 10px;
font-size: 40px;
font-family:Arial, Helvetica, sans-serif
}
label{
margin-bottom: -20px;
font-size: 20px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
input{
margin-bottom: 10px;
border-bottom-color: blue;
border-top:none;
border-left:none;
border-right:none;
padding: 9px;
outline: none;
font-size: 23px;
}
#btn{
background-color: rgb(95, 95, 214);
border-radius: 108px;
padding: 17px;
color: white;
font-size: 15px;
cursor: pointer;
}
#btn:hover{
background-color: blueviolet;
}
p{
text-align: center;
}
a:hover{
color: rgb(173, 53, 53);
}
.redr{
font-size: 18px;
padding: 20px;
display: flex;
gap:10px;
}
.lef{
text-align:left;
padding:0px 20px;
}
.home{
margin-top: 650px;
width: 100px;
height: 38px;
position: fixed;
background-color:rgb(79, 96, 202);
padding-right: 10px;
cursor: pointer;
}
.rif{
padding-left: 20px;
}
.home:hover{
background-color:black
}
.checkbox{
display: flex;
gap:10px
}