Spaces:
No application file
No application file
File size: 894 Bytes
cf064e5 |
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 |
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #fff;
}
h1 { color: #fff; text-align: center; }
h2 { color: #f0f0f0; }
section {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: 20px;
border-radius: 15px;
margin-bottom: 20px;
}
label {
display: block;
margin: 10px 0;
font-weight: 500;
}
input, button {
padding: 10px;
font-size: 1rem;
border-radius: 8px;
border: none;
width: 100%;
box-sizing: border-box;
}
input {
background: rgba(255,255,255,0.9);
color: #333;
}
button {
background: #27ae60;
color: #fff;
cursor: pointer;
font-weight: bold;
margin-top: 10px;
transition: 0.3s;
}
button:hover {
background: #1e8449;
transform: scale(1.02);
}
|