
| Current Path : /var/www/wsgi/konto/static/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/wsgi/konto/static/style.css |
* {
box-sizing: border-box;
font-family: "Segoe UI", sans-serif;
}
body {
background: linear-gradient(135deg, #667eea, #764ba2);
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.login-container {
background: #fff;
padding: 40px;
width: 350px;
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
text-align: center;
}
h2 {
margin-bottom: 30px;
}
.input-group {
position: relative;
margin-bottom: 25px;
}
.input-group input {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
outline: none;
font-size: 16px;
}
.input-group label {
position: absolute;
top: 50%;
left: 12px;
color: #888;
font-size: 14px;
transform: translateY(-50%);
pointer-events: none;
transition: 0.3s;
}
.input-group input:focus + label,
.input-group input:valid + label {
top: -8px;
background: #fff;
padding: 0 5px;
color: #667eea;
font-size: 12px;
}
.toggle {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
button {
width: 100%;
padding: 12px;
border: none;
border-radius: 8px;
background: #667eea;
color: white;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background: #5a67d8;
}
#message {
margin-top: 15px;
font-size: 14px;
}