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

.header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    height: 15%;
    z-index: 999;
    padding: 80px;
    position: absolute;
}

.register-section {
    width: fit-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

body {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f6f7f8;
    font-family: 'Inter', sans-serif;
    overflow-y: auto;
}

.logo-start-screen {
    position: absolute;
    width: 274px;
    height: 335px;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
    animation-name: logo-animation;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-duration: 700ms;
    animation-delay: 1s;
}

.logo-start-screen-white {
    display: none;
}

.start-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #F6F7F8;
    position: fixed;
    top: 0px;
    right: 0px;
    animation-name: background-animation;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-duration: 1.5s;
    animation-delay: 1s;
    opacity: 1;
}

@keyframes logo-animation {
    from {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 274px;
        height: 334.07px;
    }

    to {
        top: 80px;
        left: 77px;
        transform: none;
        width: 100px;
        height: 122px;
    }
}

@keyframes background-animation {
    from {
        opacity: 1;
        position: fixed;
    }

    to {
        opacity: 0;
        display: none;
    }
}


.typ-register-span {
    font-size: 20px;
    font-weight: 300;
}

.button-signup {
    background-color: #2A3647;
    color: white;
    border: unset;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 21px;
    cursor: pointer;
}

.button-signup:hover {
    background-color: #29ABE2;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.login-section-div {
    height: 100vh;
    width: 100%;
    background-color: #F6F7F8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px;
    padding-bottom: 0px;
    gap: 32px;

}

.login-section {
    width: 650px;
    height: 493px;
    padding: 48px 115px 48px 115px;
    border-radius: 30px;
    gap: 32px;
    background: #FFFFFF;
    box-shadow: 0px 0px 14px 3px #0000000A;
}

.header-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.header-login {
    width: 151px;
    height: 73px;
    font-weight: 700;
    font-size: 60px;
    line-height: 75px;
    letter-spacing: 0em;
    color: black;
    text-align: center;
}

.border-login {
    width: 140px;
    height: 3px;
    background: #29ABE2;
}

.input-fields {
    width: 422px;
    height: 152px;
    margin-top: 32px;
    gap: 32px;
}

.input-container {
    display: flex;
    align-items: center;
}

.input {
    width: 422px;
    height: 48px;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    padding: 12px 20px 12px 20px;
    border-radius: 10px;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid #D1D1D1;
    text-align: left;
    color: black;
    margin-bottom: 0px;
    cursor: pointer;
}

input:focus {
    outline: 1px solid #29ABE2;
}

input[type=checkbox] {
    cursor: pointer;
    padding: 0;
    margin: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(https://emirhan-kilic.de/JOIN-PROJEKT/assets/img/unchecked.svg) 0 0 no-repeat;
    background-size: contain;
    height: 16px;
    width: 16px;
}

input[type=checkbox]:hover {
    background-color: #e5ebf2;
}

input[type=checkbox]:checked {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('https://emirhan-kilic.de/JOIN-PROJEKT/img/login/checked.svg') 0 0 no-repeat;
    background-size: contain;
    height: 16px;
    width: 16px;
    padding: 0;
    margin: 0;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.check-box {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.check-box.unchecked {
    content: url("https://emirhan-kilic.de/JOIN-PROJEKT/assets/img/img_login/checkmark-empty_dark.png");
}

.check-box.checked {
    content: url("https://emirhan-kilic.de/JOIN-PROJEKT/assets/img/img_login/checkmark_checked_dark.png");
}

::placeholder {
    color: #D1D1D1;
}

.email-icon {
    margin-left: -40px;
    cursor: pointer;
}

.message-box {
    font-size: 10px;
    color: red;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 17px;
    height: 10px;
    margin-left: 5px;
}

.remember-me {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 28px;
    padding-left: 39px;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
    color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
}