/* Allgemeine Eingabefelder */
.organisation-form input[type="text"],
.organisation-form input[type="email"],
.organisation-form input[type="number"],
.organisation-form input[type="url"],
.organisation-form textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 35px;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: none !important;
    transition: border-color 0.3s;
    font-size: 16px;
}

/* Fokus auf Eingabefelder */
.organisation-form input:focus,
.organisation-form input[type="text"]:focus,
.organisation-form input[type="email"]:focus,
.organisation-form input[type="number"]:focus,
.organisation-form input[type="url"]:focus,
.organisation-form textarea:focus {
    border-color: #467ff7 !important;
    box-shadow: none !important;
    outline: none;
}

/* Zwei-Spalten Layout */
.organisation-form .form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 15px;
}

.organisation-form .form-column {
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
}

.organisation-form .form-column input {
    width: 100%;
    max-width: 100%;
}

/* Beschreibung */
.organisation-form .beschreibung-block {
    width: 100%;
    margin-bottom: 15px;
}

.organisation-form .beschreibung-block textarea {
    width: 100%;
    max-width: 100%;
    height: 200px;
    resize: vertical;
}

/* Counter */
.organisation-form #beschreibung-counter {
    display: block;
    width: 100%;
    text-align: right;
    margin-top: 3px;
    font-size: 12px;
    color: #666;
}

/* Buttons */
.organisation-form .button,
.organisation-form button {
    width: 200px;
    height: 50px; /* gleiche Höhe wie Inputs */
    border-radius: 35px;
    border: 1px solid #467ff7;
    background-color: #467ff7;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

/* Hover Effekt */
.organisation-form .button:hover,
.organisation-form button:hover {
    background-color: #fff !important;
    color: #467ff7 !important;
    border: 1px solid #467ff7 !important;
    box-shadow: none !important;
}

/* Button-Abstand */
.organisation-form .button-row {
    margin-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .organisation-form .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .organisation-form .form-column {
        width: 100%;
        flex: 0 0 100%;
    }
}