-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.css
129 lines (124 loc) · 2.68 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
*{
padding: 0;
margin: 0;
}
:root {
--background-color: #5bbb1f;
/* --background-color: rgb(56, 216, 96); */
--text-gray-color: rgb(68, 68, 68);
--text-dark-color: rgb(12, 12, 12);
}
body{
background: rgba(33, 34, 34, 0.5) url("assets/pexels-prathsnap.jpg");
background-position: center;
background-size: cover;
background-blend-mode: darken;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
/*---------------------------login area styling----------------------*/
.main-parent{
background: rgb(255 255 255/75%);
border-radius: 15px;
backdrop-filter: blur(5px);
box-shadow: 0 0 10px 2px rgba(0,0,0,0.1);
}
.left_content_form{
background: #fff;
padding: 1rem 2rem;
color: #101010;
border-top-left-radius: 15px;
border-bottom-left-radius: 15px;
}
.left_content_form img{
position: absolute;
top: 1rem;
right: 1rem;
}
.left_content_form .dot1{
position: absolute;
width: 20px;
height: 20px;
border-radius: 50%;
border: 1px solid #fff;
top: 2rem;
left: 2rem;
}
.left_content_form .dot2{
position: absolute;
width: 40px;
height: 40px;
border-radius: 50%;
border: 1px solid #fff;
bottom: .5rem;
left: .5rem;
}
.left_content_form .dot3{
position: absolute;
width: 30px;
height: 30px;
border-radius: 50%;
background: #fff;
bottom: 5rem;
right: 5rem;
}
.left_content_form .dot4{
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
background: #fff;
top: 20%;
right: 8rem;
}
.form-wrap{
padding: 4rem;
}
.main-parent .form-wrap h1{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 30px;
text-align: center;
margin-bottom: 15px;
}
.single-input{
border-bottom: 1px solid #101010;
}
.main-parent .form-wrap .single-input input{
width: 100%;
padding: 10px 10px;
border: none;
border-radius: 50px;
margin: .3rem 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
outline: none;
background: none;
}
.Submit-button{
text-align: center;
}
.Submit-button button{
padding: 10px 30px;
border: none;
background: #48be3d;
border-radius: 50px;
color: #fff;
margin: .5rem 0;
margin-top: 1.5rem;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
cursor: pointer;
width: 100%;
}
.account-have{
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
margin-top: 10px;
}
.account-have a{
text-decoration: none;
color: #333;
}