body { font-family: 'Roboto', sans-serif; margin: 0; padding: 20px; background: url('/static/background.png') no-repeat center center fixed; background-size: cover; color: #333; } h1 { color: #333; text-align: center; margin-bottom: 20px; } form { background: rgba(255, 255, 255, 0.9); padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; } label { display: block; margin-bottom: 8px; font-weight: bold; color: #555; } input[type="text"], select, input[type="file"] { width: 100%; padding: 10px; margin-bottom: 20px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; transition: border-color 0.3s ease; } input[type="text"]:focus, select:focus, input[type="file"]:focus { border-color: #28a745; outline: none; } button { background-color: #28a745; color: #fff; padding: 12px 24px; border-radius: 4px; cursor: pointer; font-size: 16px; transition: background-color 0.3s ease, transform 0.3s ease; align-self: center; } button:hover { background-color: #218838; transform: scale(1.05); } button:active { background-color: #1e7e34; } button:focus { outline: none; box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5); } .form-box { background: rgba(255, 255, 255, 0.9); padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); margin-bottom: 20px; } .form-box h3 { margin-bottom: 20px; color: #007bff; } footer { background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460); color: #fff; text-align: center; padding: 20px 0; margin-top: 40px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } footer p { margin: 5px 0; } footer a { color: #fff; text-decoration: none; transition: color 0.3s ease; } footer a:hover { color: #e94560; } .highlight-text { background: linear-gradient(90deg, #ff8a00, #e52e71); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shine 3s infinite linear; } @keyframes shine { 0% { background-position: 0; } 60% { background-position: 200px; } 100% { background-position: 200px; } } .icon { width: 20px; height: 20px; margin-right: 5px; }