Chechboxes and submit button

This commit is contained in:
Verena Schulz
2025-11-05 17:05:29 +01:00
parent 5d9e41d0f3
commit 99c8bea0be
2 changed files with 38 additions and 10 deletions
+25 -4
View File
@@ -58,15 +58,36 @@ body {
background-color: #0056b3;
}
.submit-btn:hover {
background-color: #0056b3;
}
input[type="file"] {
display: none;
}
.dropdown-container{
margin-top: 15px;
.checkbox-container{
margin-top: 8px;
display: flex;
flex-direction: column;
align-items: flex-start;
align-items: center;
gap: 5px;
}
.checkbox-group {
margin-top: 15px;
display: flex;
flex-direction: column;
gap: 10px;
align-items: flex-start;
}
.submit-btn {
padding: 10px 20px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
}