-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenter.css
More file actions
120 lines (120 loc) · 2.52 KB
/
Copy pathenter.css
File metadata and controls
120 lines (120 loc) · 2.52 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
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background:
linear-gradient(rgba(85, 168, 203, 0.03) 1px, transparent 1px) 0 0 / 40px 40px,
linear-gradient(90deg, rgba(55, 171, 220, 0.03) 1px, transparent 1px) 0 0 / 40px 40px,
linear-gradient(rgba(10, 100, 211, 0.78), rgba(18, 19, 19, 0.92)),
url('https://images.unsplash.com/photo-1508971344143-1b9cbbf0e7c8?w=1920&q=80') center/cover no-repeat fixed;
}
.form-box {
background: rgba(15, 20, 28, 0.75);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(6,182,212,0.15);
padding: 40px;
border-radius: 20px;
width: 350px;
box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
color: white;
margin: 0 auto;
box-sizing: border-box;
}
.tabs{
display:flex;
margin-bottom:20px;
gap: 8px;
}
.tab{
flex:1;
padding:10px;
border:none;
cursor:pointer;
background:#2a2a2a;
color:#090202;
border-radius:20px;
}
.tab.active{
background:#06b6d4;
color:black;
}
input{
width:100%;
padding:12px;
margin:8px 0;
border-radius:10px;
border:1px solid #333;
background:#121212;
color:white;
box-sizing: border-box;
}
.row{
display:flex;
gap:10px;
margin: 0;
}
button{
width:100%;
padding:12px;
margin-top:10px;
border:none;
border-radius:25px;
background:#06b6d4;
color:black;
cursor:pointer;
transition:0.3s;
}
button:hover{
background:#06b6d4;
}
small{
color:red;
font-size:12px;
display:block;
margin-top: 2px;
}
.switch-text{
text-align:center;
margin-top:15px;
font-size:14px;
color:#aaa;
}
.switch-text span{
color:#06b6d4;
font-weight:600;
cursor:pointer;
}
.switch-text span:hover{
text-decoration:underline;
}
@media (max-width: 500px) {
.form-box {
width: 85%;
max-width: 350px;
padding: 24px 20px;
margin: 0 auto;
}
.row {
flex-direction: column;
gap: 0;
}
.row input {
width: 100%;
margin: 8px 0;
}
.tabs {
flex-direction: row;
gap: 8px;
justify-content: center;
}
.tab {
font-size: 13px;
padding: 8px 6px;
flex: 1;
min-width: 0;
}
}