-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDevelopment.css
More file actions
133 lines (132 loc) · 2.64 KB
/
Copy pathDevelopment.css
File metadata and controls
133 lines (132 loc) · 2.64 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
*{
margin: 0;
padding: 0;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
box-sizing: border-box;
}
body{
display: flex;
background: #0c1022;
justify-content: center;
align-items: center;
min-height: 100vh;
overflow: hidden;
}
.container{
position: relative;
width: 350px;
height: 500px;
background: rgba(0,0,0,75);
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
padding-inline: 32px;
overflow: hidden;
}
.container::before{
content: '';
position: absolute;
height: 650px;
width: 650px;
background: conic-gradient(
transparent,transparent,transparent,#d400d4
);
animation: animate 4s linear infinite;
animation-delay: -2s;
}
.container::after{
content: '';
position: absolute;
height: 650px;
width: 650px;
background: conic-gradient(
transparent,transparent,transparent,#00cfff
);
animation: animate 4s linear infinite;
}
@keyframes animate{
0%{
transform: rotate(0);
}
100%{
transform: rotate(360deg);
}
}
.image{
position: absolute;
inset: 5px;
background: #0c1022;
z-index: 1;
border-radius: 16px;
}
.form-box{
display: flex;
justify-content: center;
align-items: center;
min-height: 60vh;
}
.form-box .form h2{
font-size: 40px;
color: #fff;
text-align: center;
}
.form-box .input-box{
position: relative;
margin: 30px 0;
width: 310px;
border-bottom: 2px solid #fff;
}
.input-box input{
width: 100px;
height: 60px;
background: transparent;
border: none;
outline: none;
font-size: 16px;
padding: 0 35px 0 5px;
color: #fff;
}
input:focus ~ label,
input:valid ~ label{
top: -5x;
}
.input-box label{
position:absolute;
color: #fff;
top: 50px;
left: 5px;
transform: translateY(-50%);
font-size: 16px;
pointer-events: none;
transform: .3s
}
.group{
display: flex;
justify-content: space-between;
}
.group a{
position: relative;
top: -20px;
color: #fff;
text-decoration: none;
font-weight: 500;
}
a:hover{
color:red;
}
button{
height: 40px;
width: 90px;
font-size: 18px;
font-weight: 600px;
cursor: pointer;
outline: none;
border: none;
border-radius: 10px;
}
button:focus{
color: #fff;
background-color: #0c1022;
border: 2px solid #fff;
}*