
.fahrplan-form * {
    box-sizing: border-box;
}

.fahrplan-form > * + * {
    margin-bottom: 1rem;
}

.fahrplan-form input[type="text"],
.fahrplan-form input[type="time"] {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #b7b7b7;
    width: 100%;
}

.fahrplan-form input[type="submit"] {
    background-color: #EB0000;
    color: #FFF;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.5s linear;
}

.fahrplan-form input[type="submit"]:hover {
    background-color: #000;
}

.fahrplan-form label, .fahrplan-form__country-header {
    font-weight: 600;
}

.fahrplan-form__from-wrapper label,
.fahrplan-form__to-wrapper label,
.fahrplan-form__date-wrapper label,
.fahrplan-form__time-wrapper label {
    display: block;
}

.fahrplan-form__error {
    font-weight: 600;
    background-color: #EB0000;
    color: #FFF;
    border-radius: 8px;
    padding: 1rem 2rem;
}