Verarbeitung von Nutzungsanträgen (Genehmigung)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

98 lines
2.2 KiB

body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f9f9f9;
color: #333;
}
h2 {
color: #0056b3;
border-bottom: 2px solid #0056b3;
padding-bottom: 5px;
}
.container {
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
max-width: 600px;
margin: auto;
}
.info-section {
margin-bottom: 20px;
}
.info-section p {
margin: 5px 0;
line-height: 1.6;
}
ul {
margin: 10px 0;
padding-left: 20px;
}
ul li {
margin: 5px 0;
}
.highlight {
font-weight: bold;
color: #0056b3;
}
form p {
margin-bottom: 15px;
font-size: 1em;
}
.highlightform {
font-weight: bold;
color: #0056b3;
display: inline-block;
min-width: 120px;
}
.highlightForm2 {
font-weight: bold;
color: #0056b3;
display: block;
margin-bottom: 4px; /* Abstand zwischen Label und Textarea */
}
input[type="text"] {
width: calc(100% - 140px); /* Platz für Label */
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1em;
margin-left: 10px;
box-sizing: border-box;
}
input[type="text"]:focus {
border-color: #0056b3;
outline: none;
}
button {
margin-top: 10px;
padding: 10px 15px;
background-color: #0056b3;
color: #fff;
border: none;
border-radius: 4px;
font-size: 1em;
cursor: pointer;
}
button:hover {
background-color: #004494;
}
.footer {
margin-top: 20px;
font-size: 0.9em;
color: #555;
}