-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (96 loc) · 2.39 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
:root {
--primary: #6c63ff;
--bg-dark: #13111c;
--card-dark: #1a1825;
--text-primary: #ffffff;
--text-secondary: #9ca3af;
--input-bg: #242230;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--bg-dark);
color: var(--text-primary);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
flex-direction: column;
line-height: 1.6;
}
.form-container {
background-color: var(--card-dark);
padding: 2rem;
border-radius: 16px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
width: 100%;
max-width: 400px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
direction: rtl;
}
.form-container h2 {
margin-bottom: 1.5rem;
text-align: center;
font-size: 1.5rem;
font-weight: 600;
color: var(--text-primary);
}
.form-container input {
width: 100%;
padding: 12px 16px;
margin: 8px 0;
background-color: var(--input-bg);
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
color: var(--text-primary);
font-size: 1rem;
transition: all 0.3s ease;
box-sizing: border-box;
}
.form-container input:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}
.form-container input::placeholder {
color: var(--text-secondary);
}
.form-container button {
width: 100%;
padding: 12px;
margin-top: 1rem;
border: none;
background-color: var(--primary);
color: white;
border-radius: 8px;
cursor: pointer;
font-size: 1rem;
font-weight: 500;
transition: transform 0.2s ease, background-color 0.2s ease;
}
.form-container button:hover {
background-color: #5651d6;
transform: translateY(-1px);
}
.form-container button:active {
transform: translateY(1px);
}
.language-switch {
text-align: center;
margin-bottom: 1rem;
}
.language-switch button {
margin: 0 5px;
padding: 8px 12px;
background-color: var(--input-bg);
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
color: var(--text-primary);
cursor: pointer;
width: fit-content;
}
.language-switch button.active {
background-color: var(--primary);
color: white;
}