-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
171 lines (163 loc) · 3.32 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
body {
/* background-image: linear-gradient(140deg, #d3afef 10%, #be72f1 100%); */
background-image: linear-gradient(-160deg,#ffccff 20%,#88ed88);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
font-family: "Open Sans", sans-serif;
color: #333333;
}
.box-form {
margin: 0 auto;
width: 80%;
background: #ffffff;
border-radius: 10px;
overflow: hidden;
display: flex;
flex: 1 1 100%;
align-items: stretch;
justify-content: space-between;
box-shadow: 0 0 20px 6px #48236b85;
}
@media (max-width: 980px) {
.box-form {
flex-flow: wrap;
text-align: center;
align-content: center;
align-items: center;
}
}
.box-form div {
height: auto;
}
.box-form .left {
color: #240231;
background-size: cover;
background-repeat: no-repeat;
background-image: url('WhatsApp-Image-2023-09-27-at-4.08.01-PM.jpg');
overflow: hidden;
}
.box-form .left .overlay {
padding: 30px;
width: 100%;
height: 100%;
background: #c9aeeb85;
overflow: hidden;
box-sizing: border-box;
}
.box-form .left .overlay h1 {
font-size: 10vmax;
line-height: 1;
font-weight: 900;
margin-top: 40px;
margin-bottom: 20px;
}
.box-form .left .overlay span p {
margin-top: 30px;
font-weight: 900;
}
.box-form .left .overlay span a {
background: #3b5998;
color: #FFFFFF;
margin-top: 10px;
padding: 14px 50px;
border-radius: 100px;
display: inline-block;
box-shadow: 0 3px 6px 1px #042d4657;
}
.box-form .left .overlay span a:last-child {
background: #1dcaff;
margin-left: 30px;
}
.box-form .right {
padding: 40px;
overflow: hidden;
}
@media (max-width: 980px) {
.box-form .right {
width: 100%;
}
}
.box-form .right h5 {
font-size: 6vmax;
line-height: 0;
}
.box-form .right p {
font-size: 14px;
color: #B0B3B9;
}
.box-form .right .inputs {
overflow: hidden;
}
.box-form .right input {
width: 100%;
padding: 10px;
margin-top: 25px;
font-size: 16px;
border: none;
outline: none;
border-bottom: 2px solid #B0B3B9;
}
.box-form .right .remember-me--forget-password {
display: flex;
justify-content: space-between;
align-items: center;
}
.box-form .right .remember-me--forget-password input {
margin: 0;
margin-right: 7px;
width: auto;
}
.box-form .right button {
float: right;
color: #fff;
font-size: 16px;
padding: 12px 35px;
border-radius: 50px;
display: inline-block;
border: 0;
outline: 0;
box-shadow: 0px 4px 20px 0px #b656cca6;
background-image: linear-gradient(135deg, #bb6dd5 10%, #9429a7 100%);
}
.box-form .right button:hover {
background-color: #d78af0; /* Change the background color on hover */
cursor: pointer;
transform: scale(1.05);
}
label {
display: block;
position: relative;
margin-left: 30px;
}
label::before {
content: ' \f00c';
position: absolute;
font-family: FontAwesome;
background: transparent;
border: 3px solid #3c0343;
border-radius: 4px;
color: transparent;
left: -30px;
transition: all 0.2s linear;
}
label:hover::before {
font-family: FontAwesome;
content: ' \f00c';
color: #fff;
cursor: pointer;
background: #70F570;
}
label:hover::before .text-checkbox {
background: #70F570;
}
label span.text-checkbox {
display: inline-block;
height: auto;
position: relative;
cursor: pointer;
transition: all 0.2s linear;
}
label input[type="checkbox"] {
display: none;
}