-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles2.css
More file actions
139 lines (123 loc) · 2.96 KB
/
styles2.css
File metadata and controls
139 lines (123 loc) · 2.96 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
134
135
136
137
138
139
/* Basic reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body background with darker gradient */
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(to right, #0d0d0d, #1c1c1c); /* Sfumatura dal nero al grigio scuro */
color: #fff; /* Testo bianco per contrastare con lo sfondo */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
/* Main container */
.container {
background: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 700px;
border: 2px solid #4285F4; /* Blu di Google per il bordo */
}
/* Title */
h1 {
color: #4285F4; /* Blu di Google */
margin-bottom: 10px;
font-size: 28px;
}
/* Form */
.input-group {
margin-bottom: 20px;
}
input[type="email"], input[type="password"] {
width: 100%;
padding: 10px;
font-size: 16px;
border: 2px solid #ccc;
border-radius: 4px;
outline: none;
transition: border-color 0.3s ease;
}
input[type="email"]:focus, input[type="password"]:focus {
border-color: #34A853; /* Verde di Google */
}
/* Login button */
button {
background-color: #4285F4; /* Azzurro di Google */
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: all 0.3s ease;
}
button:hover {
background-color: #66A8F0; /* Azzurro chiaro al passaggio del mouse */
transform: scale(1.05);
}
button:active {
transform: scale(0.95);
}
/* Hidden message */
.hidden {
display: none;
}
/* Warning message */
#phishing-warning {
margin-top: 20px;
background-color: #ffcc00;
padding: 15px;
border-radius: 5px;
color: #333;
font-weight: bold;
text-align: left;
}
/* Go back button */
#go-back-btn {
background-color: #4285F4; /* Azzurro di Google */
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
position: absolute;
bottom: 20px;
right: 20px;
transition: all 0.3s ease;
}
#go-back-btn:hover {
background-color: #66A8F0; /* Azzurro chiaro al passaggio del mouse */
transform: scale(1.05);
}
#go-back-btn:active {
transform: scale(0.95);
}
/* Change language button (Italiano) */
#change-language-button {
background-color: #4285F4; /* Azzurro di Google */
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
position: absolute;
top: 20px;
right: 20px;
transition: all 0.3s ease;
}
#change-language-button:hover {
background-color: #66A8F0; /* Azzurro chiaro al passaggio del mouse */
transform: scale(1.05);
}
#change-language-button:active {
transform: scale(0.95);
}