Add files via upload

This commit is contained in:
Julka616
2025-05-13 18:26:48 +02:00
committed by GitHub
commit ecf335606e
6 changed files with 346 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
padding: 20px;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 30px;
background-color: white;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
border-radius: 12px;
}
h1 {
text-align: center;
color: #333;
font-size: 28px;
margin-bottom: 30px;
}
.form-group {
margin-bottom: 25px;
}
label {
display: block;
font-weight: bold;
color: #444;
font-size: 18px;
margin-bottom: 10px;
}
select {
width: 100%;
padding: 16px;
font-size: 18px;
border-radius: 10px;
border: 1px solid #ccc;
background-color: #fff;
box-sizing: border-box;
}
button {
width: 100%;
padding: 18px;
font-size: 20px;
border-radius: 10px;
background-color: #28a745;
color: white;
border: none;
cursor: pointer;
font-weight: bold;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #218838;
}
a {
text-decoration: none;
color: #007bff;
font-weight: bold;
}
a:hover {
color: #0056b3;
}