body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dunkler Hintergrund */
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Kontaktformular-Container */
.contact-form {
    background: rgba(255, 255, 255, 0.1); /* Halbtransparenter Hintergrund */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.5); /* Blauer Glow-Effekt */
    width: 400px;
}

/* Überschrift */
.contact-form h1 {
    text-align: center;
    color: #0080FF; /* Blau statt Grün */
    margin-bottom: 20px;
}

/* Eingabefelder */
.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #1e1e1e;
    color: white;
}

/* Eingabefeld Fokuseffekt */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0080FF; /* Blauer Fokus-Rand */
}

/* Absenden-Button */
.contact-form input[type="submit"] {
    background-color: #0080FF;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Hover-Effekt für den Button */
.contact-form input[type="submit"]:hover {
    background-color: #0066CC;
}

/* Zurück zum Ticket Button */
.back-button {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0080FF; /* Blauer Button */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 14px;
}

/* Hover-Effekt für den Button */
.back-button:hover {
    background-color: #0066CC;
}
