-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignupstyles.css
139 lines (120 loc) · 2.62 KB
/
signupstyles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #fbf3ff;
}
.container {
position: absolute;
max-width: 800px;
height: 500px;
margin: auto;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.myRightCtn {
position: relative;
background-image: linear-gradient(45deg, #f046ff, #9b00e8);
border-radius: 25px;
height: 100%;
padding: 25px;
color: rgb(192, 192, 192);
font-size: 12px;
display: flex;
justify-content: center;
align-items: center;
}
.myLeftCtn {
position: relative;
background: #fff;
border-radius: 25px;
height: 100%;
padding: 25px;
padding-left: 50px;
}
.myLeftCtn header {
color: blueviolet;
font-size: 24px;
font-weight: 700;
margin-bottom: 20px;
}
.row {
height: 100%;
}
.myCard {
position: relative;
background: #fff;
height: 100%;
border-radius: 25px;
-webkit-box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.7);
}
.myRightCtn header {
color: #fff;
font-size: 44px;
}
.box {
position: relative;
margin: 20px;
margin-bottom: 100px;
}
.myLeftCtn .myInput {
width: 230px;
border-radius: 25px;
padding: 10px;
padding-left: 50px;
border: none;
-webkit-box-shadow: 0px 10px 49px -14px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 10px 49px -14px rgba(0, 0, 0, 0.7);
box-shadow: 0px 10px 49px -14px rgba(0, 0, 0, 0.7);
}
.myLeftCtn .myInput:focus {
outline: none;
}
.myForm {
position: relative;
margin-top: 50px;
}
.myLeftCtn .butt {
background: linear-gradient(45deg, #bb36fd, #9b00e8);
color: #fff;
width: 230px;
border: none;
border-radius: 25px;
padding: 10px;
-webkit-box-shadow: 0px 10px 41px -11px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 10px 41px -11px rgba(0, 0, 0, 0.7);
box-shadow: 0px 10px 41px -11px rgba(0, 0, 0, 0.7);
}
.myLeftCtn .butt:hover {
background: linear-gradient(45deg, #c85bff, #b726ff);
}
.myLeftCtn .butt:focus {
outline: none;
}
.myLeftCtn .fas {
position: relative;
color: #bb36fd;
left: 36px;
}
.butt_out {
background: transparent;
color: #fff;
width: 120px;
border: 2px solid#fff;
border-radius: 25px;
padding: 10px;
-webkit-box-shadow: 0px 10px 49px -14px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 10px 49px -14px rgba(0, 0, 0, 0.7);
box-shadow: 0px 10px 49px -14px rgba(0, 0, 0, 0.7);
}
.butt_out:hover {
border: 2px solid#eecbff;
}
.butt_out:focus {
outline: none;
}