form {width: 98%;}

/* Formularstile */
input[type="text"], input[type="email"], input[type="password"], textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"], button {
    background: #000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

input[type="submit"]:hover, button:hover {
    background: #000;
}