.form-input,
.form-textarea {
    width: 100%;
    max-width: 600px;
    padding: 10px 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease;
}




.form-input:focus,
.form-textarea:focus {
    border-color: #0077cc;
    background: #fff;
    outline: none;
}

.form-textarea {
    min-height: 140px;
}

.form-button {
    padding: 10px 18px;
    background: #0077cc;
    color: #fff !important;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.form-button:hover {
    background: #005fa3;
}

.form-select {
    width: 100%;
    max-width: 600px;
    padding: 10px 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-select:focus {
    border-color: #0077cc;
    background: #fff;
    outline: none;
}

    .form-message {
    background-color: #e6ffed;  /* hellgrün */
    border: 1px solid #4CAF50;  /* grüner Rahmen */
    color: #256029;             /* dunkles Grün */
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 20px;
}

.form-message.error {
    background-color: #ffe6e6;  /* hellrot */
    border: 1px solid #f44336;  /* rot */
    color: #a20000;
}
