-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (91 loc) · 2.31 KB
/
style.css
File metadata and controls
112 lines (91 loc) · 2.31 KB
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
body{
margin: 0;
padding: 0;
background: linear-gradient(-32.0512deg, #FF416C, #FF4B2B);
background-size: 100% 700px;
background-repeat: no-repeat;
}
.container{
box-shadow: 0px 0px 27px 8px #FF416C;
-webkit-box-shadow: 0px 0px 27px 8px #FF416C;
-moz-box-shadow: 0px 0px 27px 8px #FF416C;
background-color: white;
height: 560px;
width: 360px;
border-radius: 45px;
display: flex;
justify-content: center;
margin: 35px auto;
}
.header{
margin: auto 0;
margin-top: 25px;
margin-bottom: 25px;
font-size: 2rem;
font-weight: bold;
font-family: 'Signika Negative', sans-serif;
display: flex;
justify-content: center;
background: -webkit-linear-gradient(-32.0512deg,#FF416C, #FF4B2B);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.form{
padding: 10px;
width: 250px;
display: flex;
align-items: flex-start;
}
.form_feild{
padding: 7px;
width: 230px;
border: none;
border-bottom: 1px solid #FF416C;
background-color: transparent;
}
.text{
font-size: 1.2rem;
font-weight: bold;
font-family: 'Signika Negative', sans-serif;
background: -webkit-linear-gradient(-32.0512deg,#FF416C, #FF4B2B);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.submit{
display: flex;
justify-content: center;
align-items: center;
}
.btn{
font-size: 1.2rem;
font-weight: bold;
font-family: 'Signika Negative', sans-serif;
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px;
padding-top: 10px;
padding-right: 70px;
padding-bottom: 10px;
padding-left: 70px;
border-radius: 25px;
background:linear-gradient(-32.0512deg, #FF416C, #FF4B2B);
color: white;
border: transparent;
cursor: pointer;
}
.btn:hover {
box-shadow: 0px 0px 10px 2px #FF416C;
-webkit-box-shadow: 0px 0px 10px 2px #FF416C;
-moz-box-shadow: 0px 0px 10px 2px #FF416C;
background: transparent;
font-weight: bold;
background: -webkit-linear-gradient(-32.0512deg,#FF416C, #FF4B2B);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: all .3s ease-in-out;
border: 1px solid #FF4B2B;
}
.text-msg{
color: red;
}