.white-small-logo {
    width: 100px;
    height: 122px;
    flex-shrink: 0;
    position: absolute;
    top: 80px;
    left: 77px;
    cursor: pointer;
}

.forgot-password-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 765px;
    padding: 48px 88px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    gap: 32px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.08);
}

.arrow-container {
    display: flex;
    width: 37px;
    height: 37px;
    padding: 2.5px;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 48px;
    top: 64px;
}

.arrow-left-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    cursor: pointer;
    background-image: url("../img/arrow-left-line.png");
    background-size: cover;
    transition: background-image 0.1s ease-in-out;
}

.arrow-left-icon:hover {
    background-image: url("../img/arrow-hover.png");
}

.forgot-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.forgot-info-title {
    text-align: center;
    color: black;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    word-wrap: break-word;
}

.forgot-info-line {
    width: 150px;
    height: 2px;
    background-color: var(--bg-color, #4589FF);
}

.forgot-password-info {
    text-align: center;
    color: black;
    font-size: 23px;
    font-weight: 400;
    line-height: 27.60px;
    word-wrap: break-word;
}

.email-input-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 422px;
    gap: 4px;
    cursor: pointer;
}

.email-input-section {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    padding: 12px 21px;
    gap: 10px;
    border-bottom: 1px solid var(--style, #D1D1D1);
}

.email-input-frame {
    width: 100%;
    max-width: 380px;
    height: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.email-input {
    width: 100%;
    max-width: 380px;
    color: var(--style, #D1D1D1);
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    border: none;
    color: black;
    cursor: pointer;
}

.email-input::placeholder {
    color: var(--style, #D1D1D1);
}

.email-input:focus {
    outline: none;
    border: none;
}

.email-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.forgot-match-error {
    align-self: stretch;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.80px;
    word-wrap: break-word;
    color:var(--error, #FF8190);
    display: none;
}

.send-email-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
}

.send-email-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 35px;
    border-radius: 8px;
    background: var(--bg-color, #4589FF);
    color: #FFFFFF;
    border: none;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    cursor: pointer;
}

.send-email-btn:hover {
    background: var(--ligth-blue, #005DFF);
    transition: ease-in-out 100ms;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.send-email-btn:active {
    background-color: #FFFFFF;
    color: var(--bg-color, #4589FF);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.message {
    width: 431px;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 24px;
    border-radius: 20px;
    background: var(--bg-color, #4589FF);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
    gap: 13px;
    animation-name: slideInFromOutside;
    animation-duration: 0.2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes slideInFromOutside {
    from {
        transform: translateY(200px);
    }

    to {
        transform: translateY(50%);
    }
}

.message p {
    color: #FFFFFF;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.send-check {
    width: 40px;
    height: 40px;
}


/* Media Query für Bildschirmbreite von maximal 768px */
@media (max-width: 768px) {
    .white-small-logo {
        width: 64px;
        height: 78px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: flex-start;
        justify-content: flex-start;
        position: absolute;
        left: 10%;
        top: 1.5%;
    }

    .forgot-password-container {
        padding: 32px 32px;
        width: 90%;
    }

    .arrow-container {
        left: 40px;
        top: 40px;
    }

    .forgot-info-title {
        font-size: 40px;
    }

    .forgot-info-line {
        width: 88px;
    }

    .forgot-password-info {
        font-size: 19px;
        margin-top: -8px;
    }

    .send-email-btn {
        font-size: 19px;
        padding: 10px 25px;
    }

    .message {
        width: 326px;
    }

    .message p {
        font-size: 19px;
    }

    .send-check {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 500px) and (max-width: 600px) {
    .arrow-container {
        left: 1%;
        top: 40px;
    }
}

@media (min-width: 300px) and (max-width: 400px) {
    .arrow-container {
        left: 1%;
        top: 40px;
    }
}