* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: #f4f4f4;
    position: relative;
    font-family: 'Inter' !important;
    font-style: normal !important;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1920px;
}

.logo {
    width: 100px;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.04);
    border-radius: 30px;
    text-align: center;
    padding: 48px 115px;
    gap: 32px;
    position: absolute;
    width: 652px;
    height: 493px;
    left: calc(50% - 652px/2);
    top: calc(50% - 493px/2);
}

.logo-container-final {
    display: flex !important;
    position: absolute;
    top: 67px;
    left: 67px;
    opacity: 1; /* Finaler Zustand */
    z-index: 5;
}

.login-container h1,
.signUpContainer h1 {
    width: 315px;
    height: 73px;
    font-weight: 700;
    font-size: 61px;
    line-height: 120%;
    text-align: center;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 16px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 32px;
    width: 422px;
    height: 152px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

input[type="email"],
input[type="text"],
input[type="password"],
input[type="name"] {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 11px 20px;
    gap: 10px;
    font-size: 20px;
    width: 422px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.login-container input[type="password"] {
    margin-bottom: 10px;
}

input[type="email"]::placeholder,
input[type="text"],
input[type="password"]::placeholder,
input[type="name"]::placeholder {
    font-size: 20px;
}

.lock {
    position: absolute;
    top: 268px;
    right: 124px;
    margin: 0 auto;
    width: 24px;
    height: 24px;
}

.mail {
    position: absolute;
    top: 188px;
    right: 124px;
    margin: 0 auto;
    width: 24px;
    height: 24px;
}

#rememberMe {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: 142px;
    height: 24px;
    right: 100px;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000000;
}

.customCheckbox {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #000;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

.customCheckbox:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.customCheckbox:checked::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
    margin-left: 2px;
}

#msgBox {
    position: absolute;
    top: 312px;
    color: coral;
}

.loginButtons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 35px;
    width: 322px;
    height: 48px;
}

.buttonLogIn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 24px;
    gap: 10px;
    width: 110px;
    height: 48px;
    background: #091931;
    border-radius: 8px;
    flex: none;
    order: 0;
    flex-grow: 0;
    border: none;
}

.buttonLogIn:disabled {
    background: #2A3647;
    cursor: not-allowed;
}

.buttonLogIn:not(:disabled):hover,
.signUpBtn:not(:disabled):hover {
    background: #29ABE2;
    border-color: #29ABE2;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
}

.btnTextLogin {
    width: 110px;
    height: 25px;
    font-weight: 700;
    font-size: 21px;
    line-height: 120%;
    color: #fff;
    white-space: nowrap;
}

.buttonGuestLog {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 24px;
    gap: 10px;
    width: 177px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #2A3647;
    border-radius: 8px;
    color: #2A3647;
}

.buttonGuestLog:hover {
    box-sizing: border-box;
    border: 2px solid #29ABE2;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 10px;
    color: #29ABE2;
}

#guestLogText {
    width: 129px;
    height: 25px;
    font-weight: 700;
    font-size: 21px;
    line-height: 120%;
    flex: none;
    order: 0;
    flex-grow: 0;
}

button {
    font-family: 'Inter';
    font-style: normal;
    cursor: pointer;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: fadeIn 1s forwards, fadeUp 1s forwards;
    animation-delay: 0s, 3s;
    z-index: 5;
}

.logo-container.static {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    position: relative;
    top: 0;
    left: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    100% {
        top: 67px;
        left: 67px;
        transform: translate(0, 0);
    }
}

.not-a-user {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 35px;
    position: absolute;
    width: 279px;
    height: 49px;
    right: 100px;
    top: 67px;
}

.vector {
    width: 150px;
    height: 0px;
    border: 2px solid #29ABE2;
    margin-top: -15px;
}

.dNone {
    display: none;
}

.visabilityHidden {
    visibility: hidden;
}

@media (max-width: 770px) {
    .logo-container-final {
        top: 24px;
        left: 25px;
    }

    .not-a-user {
        right: 25px;
    }
}

@media (max-height: 880px) and (max-width: 1000px) {
    .logo-container-final {
        left: 50px;
        top: 50px;
    }
}

@media (max-height: 740px) and (max-width: 1000px) {
    .not-a-user {
        right: 144px;
        top: 10px;
    }
}

@media (max-height: 748px) and (max-width: 1422px) {
    .not-a-user {
        right: 200px;
        top: 10px;
    }
}

@media (max-height: 830px) and (max-width: 960px) {
    .logo-container-final {
        left: 20px;
        top: 20px;
    }

    .logo {
        width: 80px;
    }

    .not-a-user {
        right: 80px;
        top: 10px;
    }
}

@media (max-height: 715px) and (max-width: 850px) {
    .logo {
        width: 60px;
    }
}