-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (62 loc) · 1.28 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
body {
margin: 0;
padding: 0;
background: linear-gradient(135deg, #56ccf2, #2a9d8f);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
}
.login-box {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
/* شرح */
padding: 40px;
border-radius: 12px;
width: 350px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
border: 1px solid rgba(255, 255, 255, 0.18);
}
.login-box h2 {
text-align: center;
color: white;
margin-bottom: 30px;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: none;
border-radius: 4px;
box-sizing: border-box;
background-color: rgba(255, 255, 255, 0.3);
color: #000;
}
button {
width: 100%;
padding: 12px;
background-color: #264653;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
label {
color: white;
font-size: 14px;
display: inline-block;
margin-bottom: 15px;
}
.footer {
text-align: center;
color: white;
margin-top: 20px;
font-size: 12px;
}
@media screen and (max-width:768px) {
.login-box{
width:200px;
}
}