-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (109 loc) · 1.93 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
*{
margin: 0;
padding: 0;
}
body{
background: linear-gradient(to right,#ff00dd,#fa9200);
}
.form-body{
width: 800px;
height: 595px;
margin: 17px auto;
display: flex;
}
.left-part{
width: 50%;
height: 595px;
background-color: #ffffff;
position: relative;
}
.left-part h1{
color: #f700ff;
font-size: 70px;
text-align: center;
padding-top: 35px;
}
.left-part h2{
text-align: center;
text-transform: capitalize;
font-weight: 300;
}
.form{
width: 300px;
height: 300px;
margin: 30px auto;
text-transform: capitalize;
line-height: 30px;
}
.form .details{
margin-left: 14px;
}
.form-input{
margin-top: 15px;
}
label{
font-size: 13px;
margin-left: 10px;
color: #808080c9;
}
.form-input input{
width: 280px;
height: 30px;
border: 1px solid #c5c3c349;
border-radius: 20px;
outline: none;
padding-left: 20px;
}
button{
width: 280px;
height: 40px;
background: linear-gradient(to right,#ffb700,#FE00FD);
border: none;
border-radius: 999px;
text-align: center;
text-decoration: none;
color: #ffffff;
text-transform: capitalize;
font-size: 15px;
cursor: pointer;
}
.form .forgot{
text-align: center;
margin-top: 10px;
font-size: 13px;
color: #808080c9;
}
.create{
text-transform: capitalize;
position: absolute;
top: 500px;
left: 65px;
}
.create-btn{
width: 120px;
height: 35px;
background:#ffffff;
border: 1px solid #FE00FD;
color: #FE00FD;
cursor: pointer;
}
.right-part{
width: 50%;
height: 595px;
position: relative;
background: linear-gradient(to right,#ffb700,#ff00ee);
}
.rp-text h2{
text-transform: capitalize;
font-weight: 300;
color: #ffffff;
}
.right-part .rp-text{
position: absolute;
top: 200px;
left: 60px;
right: 60px;
text-align: justify;
text-transform: capitalize;
color: #ffffff;
}