-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.css
88 lines (75 loc) · 1.42 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
:root {
font-family: "Nunito Sans", sans-serif;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
body {
background-color: #f5f7f7;
display: flex;
align-items: center;
justify-content: center;
}
.form {
background-color: #ffffff;
height: fit-content;
width: 350px;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#title {
color: #666666;
margin-top: -1px;
}
.inp {
width: 100%;
padding: 8px;
margin: 6px 0 6px 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}
.inp:hover:not(#btn) {
border: 1px solid #757575;
}
.inp:focus{
outline: none;
outline: solid rgb(55 112 255) 2px;
}
.passcontain {
margin-bottom: -22px;
}
#hidepass {
width: fit-content;
position: relative;
top: -30px;
left: 91%;
padding: 6px;
display: inline;
}
#eye {
color: rgb(79, 79, 79);
}
.radios {
display: flex;
flex-direction: column;
color: #7e7e7e;
padding: 5px;
}
#btn {
background-color: rgb(55 112 255);
color: white;
border: none;
cursor: pointer;
position: relative;
top: 25px;
transition: all 1s;
}
#btn:hover {
transform: translate(0, -3px);
background-color: rgb(33, 83, 209);
transition: all 0.5s;
}