-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (56 loc) · 1.04 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
*{
font-family: 'Nunito', sans-serif;
}
.fa-circle {
font-size: 6px;
}
.fa-check {
font-size: 18px;
color: #00a896;
}
.txt-success {
color: #00a896
}
.img-container img{
width: 60px;
}
.input-gp {
position: relative;
}
.password-input {
width: 100%;
border: 1.2px solid gray;
border-radius:5px;
padding : 1rem;
font-size: 1rem;
transition: border 150ms cubic-bezier(0.4,0,0.2,1);
}
.password-label {
position: absolute;
left: 15px;
font-weight: 600;
pointer-events: none;
transform: translateY(1rem);
transition: 150ms cubic-bezier(0.4,0,0.2,1);
}
.password-input:focus{
outline: none;
border: 2px solid #3a0ca3;
}
.password-input:focus ~ label,input:valid ~ label {
transform: translateY(-50%) scale(0.8);
background-color: white;
padding: 0.4em;
font-weight: 600;
color :#3a0ca3
}
.validation-text span {
margin: 3px 0;
}
.eye-icon {
position: absolute;
top: 50%;
right: 15px;
transform: translateY(-50%);
cursor: pointer;
}