-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle3.css
91 lines (80 loc) · 1.5 KB
/
style3.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
/* Global Styles */
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: 'Arial', sans-serif;
}
/* Hintergrund mit Farbverlauf */
.background {
height: 100%;
background: linear-gradient(135deg, #ff7eb3, #ff758c, #ff9770);
display: flex;
justify-content: center;
align-items: center;
}
/* Container für das Login-Formular */
.container {
background: #ffffff;
border-radius: 12px;
padding: 30px;
width: 90%;
max-width: 400px;
text-align: center;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
/* Header-Styling */
h1 {
font-size: 2rem;
color: #ff4b6e;
margin-bottom: 10px;
}
p {
color: #666;
margin-bottom: 20px;
}
/* Formular-Styling */
.login-form label {
display: block;
text-align: left;
font-size: 0.9rem;
margin: 10px 0 5px;
color: #444;
}
.login-form input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1rem;
background: #f9f9f9;
}
.login-form input:focus {
border-color: #ff4b6e;
outline: none;
}
/* Button-Styling */
button {
width: 100%;
padding: 10px 15px;
font-size: 1rem;
color: white;
background: #ff4b6e;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background: #e03a5b;
}
/* Responsiveness */
@media (max-width: 600px) {
.container {
padding: 20px;
}
h1 {
font-size: 1.8rem;
}
}