-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog.css
More file actions
105 lines (105 loc) · 2.14 KB
/
Copy pathlog.css
File metadata and controls
105 lines (105 loc) · 2.14 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 10px;
}
html::before {
content: '';
width: 100%;
height: 100%;
position: fixed;
z-index: -1;
}
::selection {
color: #fff;
background-color: rgb(144,129,241);
}
.box {
display: flex;
overflow: hidden;
width: 90rem;
height: 55rem;
background-color: rgba(255,255,255,70%);
border-radius: 1.5rem;
margin: 10% auto;
box-shadow: 0 0 1rem 0.2rem rgb(0 0 0 / 10%);
}
.box .left {
position: relative;
width: 35%;
height: 100%;
}
.box .left::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
background-image: url(https://i.imgtg.com/2023/03/26/ji97I.png);
background-size: cover;
opacity: 80%;
}
.box .right {
display: flex;
width: 65%;
flex-direction: column;
align-items: center;
}
.box .right h2{
color: rgb(144,129,241);
font-size: 3rem;
margin-top: 5rem;
}
.box .right form {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box .right form .acc {
outline: none;
width: 80%;
height: 5rem;
font-size: 1.6rem;
margin-top: 5rem;
padding: 1rem 0 0 1.6rem;
border: none;
border-bottom:1px solid rgb(144,129,241) ;
color: rgb(144,129,241);
background-color: rgba(0,0,0,0);
}
.right form .acc:focus {
outline: none;
color: rgb(144,129,241);
padding: 1rem 0 0 1.6rem;
}
.right .submit {
width: 60%;
height: 5rem;
color: #f6f6f6;
background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
font-size: 1.4rem;
border: none;
border-radius: 0.5rem;
margin: 6rem 0 0 50%;
transform: translateX(-50%);
}
.right .submit:hover {
box-shadow: 0 0 2rem -0.5rem rgb(0 0 0 / 15%);
}
.right .fn {
display: flex;
justify-content: space-between;
margin-top: 1rem;
width: 70%;
}
.right .fn font {
font-size: 1.3rem;
margin-top: 5rem;
padding: 1rem 2rem;
color: #666;
}
.right .fn font:hover {
color: rgb(144,129,241);
}