body {
    background-color: #f5f6f7;
}
header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: top;
    justify-content: space-between;
}
header img {
    width: 100px;
    margin: 40px 0 0 77px;
    animation: logoMoveToHeader 1500ms ease-in-out forwards;
    opacity: 0.1; /* Start mit sehr transparenter Farbe */
}
.signUpBtn {
    width: 91px;
    height: 49px;
    font-size: 16px;
    height: 49px;
}
.createAccountDiv {
    display: flex;
    gap: 35px;
    margin: 67px 77px 0 0;
}

.responsive-create-acc{
    display: none;
}

.loginBox{
    z-index: 0;
    background:transparent;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.loginDiv {
    width: 652px;
    height: 449px;
    background-color: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 48px 115px 48px 115px;
    gap: 32px;
    filter: drop-shadow( 0px 0px 5px rgba(164, 163, 163, 0.265));
}
.header1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}
.underlineBlue {
    height: 3px;
    background-color: #29ABE2;
    width: 150px;
}
.loginData {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.loginData{
    width: 400px;
}

.loginData img{
    height: 20px;
}
.loginData input {
    width: 422px;
    height: 48px;
    border-radius: 10px;
    border-color: #D1D1D1;
    border-style: solid;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.loginButtons {
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 21px;
}
.loginButtons button {
    font-size: 20px;
    width: 160px;
}

/* Container für das Input-Feld und das Bild */
.input-container {
    position: relative; /* Relatives Positionieren des Containers */
    width: 100%;        /* Der Container nimmt die volle Breite ein */
    margin-bottom: 20px; /* Abstand nach unten für den Fehlertext */
}

/* Das Eingabefeld */
.input-container input {
    width: 100%;               /* Input-Feld nimmt die gesamte Breite ein */
    padding-left: 30px;        /* Platz für das Icon auf der linken Seite */
    padding-right: 30px;       /* Platz für das Icon auf der rechten Seite */
    box-sizing: border-box;    /* Padding wird innerhalb der Breite gezählt */
    font-size: 16px;           /* Optional: Schriftgröße anpassen */
    height: 40px;              /* Optional: Höhe des Input-Feldes anpassen */
}

/* Das Bild wird nun innerhalb des Input-Feldes rechts positioniert */
.input-container img {
    position: absolute;         /* Absolute Positionierung im Container */
    right: 10px;                /* Abstand von der rechten Seite des Containers */
    top: 50%;                   /* Vertikal zentrieren */
    transform: translateY(-50%); /* Vertikale Ausrichtung korrigieren */
    height: 20px;               /* Bildhöhe */
    pointer-events: none;       /* Verhindert, dass das Bild das Klicken blockiert */
}

/* Keyframe-Animation: Logo-Bewegung und Transparenzänderung */
@keyframes logoMoveToHeader {
    0% {
        transform: translate(-50%, -50%) scale(1); /* Mitte, Originalgröße */
        top: 50%;
        left: 50%;
        position: fixed;
        opacity: 0.1; /* Sehr transparent */
    }
    100% {
        transform: translate(0, 0) scale(1); /* Zielposition */
        top: 0px;
        left: 0px;
        position: fixed;
        opacity: 1; /* Volle Farbe */
    }
}

.login-links{
    color: #BBBBBC;
    cursor: pointer;
}

.login-links-container{
    display: flex;
    gap: 128px;
}