.custom-input {
    height: 50px; /* Beispielhöhe */
    font-size: 16px; /* Schriftgröße */
    width: 100%; /* Volle Breite */
}

#search-suggestions {
    border: 1px solid #ddd;
    max-height: 400px;
    overflow-y: auto;
    background-color: #fff !important;
    position: absolute;
    font-size: 0.8em;
    width: calc(100% - 20px); /* Passt zur Breite des Suchfelds */
    z-index: 1000;
}

#search-suggestions li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

#search-suggestions li:hover {
    background-color: #f0f0f0;
}

.login-form {
    position: relative;
    background: #fff;
    padding: 0;
    margin: 100px auto 0;
    width: 400px;
}

.form-wrapper {
    padding: 30px;
}

.field-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.field-wrapper label {
    position: absolute;
    top: 13px;
    left: 13px;
    color: rgba(0, 0, 0, .3);
}

.field-wrapper input {
    padding: 9px 6px 9px 40px;
    width: 100%;
    font-size: 14px;
    color: #555;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    outline: none;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-actions {
    border-top: 1px solid #e4e4e4;
    background-color: #f7f7f7;
    padding: 15px 30px;
    text-align: right;
}

.login-form .btn {
    padding: 6px 12px;
    font-size: 14px;
    color: #fff;
    background: #428bca;
    border: 1px solid #357ebd;
    border-radius: 4px;
}

/* Eule-Styling */
#owl-login {
    width: 116px;
    height: 92px;
    background: url('/style/img/face.png');
    position: absolute;
    top: -82px;
    left: 50%;
    margin-left: -58px;
}

#owl-login .eyes {
    width: 100%;
    height: 100%;
    background: url('/style/img/eyes.png');
    opacity: 0;
    transition: 0.1s ease-out;
}

#owl-login .arm-up-right,
#owl-login .arm-up-left {
    position: absolute;
    bottom: 11px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

#owl-login .arm-up-left {
    width: 52px;
    height: 41px;
    left: -10px; /* Anpassung hier könnte helfen */
    background: url('/style/img/arm-up-left.png') no-repeat;
}

#owl-login .arm-up-right {
    width: 51px;
    height: 41px;
    right: -10px; /* Anpassung hier könnte helfen */
    background: url('/style/img/arm-up-right.png') no-repeat;
}

#owl-login.password .arm-up-left,
#owl-login.password .arm-up-right {
    opacity: 1;
    transform: scale(1);
}

#owl-login.password .eyes {
    opacity: 1;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
