header {
    display: flex;
    justify-content: flex-end;
    padding: 78px;
}

.top-container {
    display: flex;
    flex-direction: column;
}

body {
    background-color: #f6f7f8;
    height: 100vh;
    margin: 0;
    width: 100%;
    padding: 0;
}

.logo-container {
    text-align: center;
}

.logo {
    max-width: 274px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 1s ease-in-out;
    transform-origin: top left;
    z-index: 2;
}

body.animate .logo {
    width: 274px;
    top: 26px;
    left: 77px;
    transform: scale(0.36);
}

.not-user-div {
    display: block;
    display: flex;
    width: 95%;
    justify-content: flex-end;
    align-items: center;
    margin-right: 51px;
    margin-top: 10px;
}

.not-user-div-mobile {
    display: none;
}

.not-user {
    font-size: 20px;
    font-family: inter;
    font-weight: 400;
    cursor: default;
    margin: 24px;
}

.sign-in-btn {
    width: 91px;
    height: 49px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 8px;
    background-color: #2A3647;
    color: white;
    font-family: inter;
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 6px -6px #777;
}

.sign-in-btn:hover {
    background-color: rgb(41, 171, 226);
}

.login-div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.log-in-window {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 28px;
    width: -webkit-fill-available;
}

.login-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    font-size: 61px;
    font-family: inter;
    font-weight: 700;
}

.underscore {
    height: 3px;
    width: 150px;
    background-color: #29abe2;
    border-radius: 5px;
    margin: 2px 0 32px;
}

.inputs {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 20px;
    font-family: inter;
}

.input-fields {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border: 1px solid #d1d1d1;
    width: auto;
    height: auto;
    border-radius: 10px;
    padding: 12px 21px;
}

::placeholder {
    color: var(--Style, #D1D1D1);
}

.icon-1 {
    color: #a8a8a8;
    width: 20px;
    height: 16px;
}

.icon-2 {
    color: #a8a8a8;
    width: 16px;
    height: 21px;
}

.remember {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    height: 3%;
    width: 100%;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 13px;
    width: 100%;
}

.checkbox {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
    color: #2A3647;
    z-index: 2;
}

.remember-text {
    cursor: default;
    font-family: inter;
    font-size: 16px;
    font-weight: 400;
}

.log-in-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.log-in-btn {
    width: 177px;
    height: 48px;
    font-size: 21px;
    font-weight: 700;
    border-radius: 8px;
    background-color: #2A3647;
    color: white;
    font-family: inter;
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 6px -6px #777;
}

.log-in-btn:hover {
    background-color: rgb(41, 171, 226);
}

.guest-btn {
    width: 177px;
    height: 48px;
    font-size: 21px;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid #2A3647;
    background-color: white;
    color: #2A3647;
    font-family: inter;
    cursor: pointer;
    box-shadow: 0 10px 6px -6px #777;
}

.guest-btn:hover {
    color: #29abe2;
    border-color: #29abe2;
}

footer {
    position: absolute;
    bottom: 56px;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 56px;
}

.link {
    text-decoration: none;
    font-size: 16px;
    font-family: inter;
    font-weight: 400;
    color: #a8a8a8;
}

.link:hover {
    color: #29abe2;
    font-weight: bold;
}

.msg1 {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    position: absolute;
    bottom: 324px;
    width: 312px;
    height: 74px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 16px;
    background-color: #2A3647;
    color: white;
    font-family: inter;
    border: none;
    z-index: 9;
}

/* RESPONSIVE */

@media(max-width: 800px) {
    .log-in-window {
        padding: 0px 0px 0px 0px;
    }
}

@media (max-width: 599px) {

    .log-in-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .log-in-window {
        padding: 0px 0px 0px 0px;
    }

}

@media (min-width: 300px) and (max-width: 600px) {


    form {
        padding: 20px 0px 20px 0px;
        margin-bottom: 0px;
    }

    .top-container {
        display: flex;
        flex-direction: column-reverse;
        height: 88vh;
    }

    .log-in-btn {
        width: 170px;
        margin: 0;
        font-size: 18px;
    }

    .guest-btn {
        width: 170px;
        margin: 0;
        font-size: 18px;
    }

    footer {
        bottom: 13px;
        gap: 40px;
    }

    .input-fields {
        height: 17px;
    }

    .login-headline {
        font-size: 43px;
    }


    body.animate .logo {
        top: 24px;
        left: 25px;
        width: 105px;
    }

    .not-user-div {
        display: none;
    }

    .not-user-div-mobile {
        display: block;
    }

    .log-in-window {
        width: 80%;
    }

    .not-user {
        display: none;
    }

    .sign-in-btn {
        width: 170px;
    }

    .sign-in-btn b {
        font-size: 18px;
    }

    input {
        font-size: 17px;
    }

    .inputs {
        display: flex;
        flex-direction: column;
    }

    .underscore {
        height: 3px;
        width: 95px;
        background-color: #29abe2;
        border-radius: 5px;
        margin: 2px 0 32px;
    }
}

@media (max-hight: 1040px) {
    footer {
        bottom: -270px;
    }
}

@media (max-width: 430px) {
    .login-div {
        height: 64vh;
    }

    .log-in-window {
        position: relative;
        top: -81px;
    }
}

@media (max-Width: 400px) {
    .not-user-div {
        bottom: 55px !important;
    }

    .log-in-window {
        top: -56px
    }
}

@media (max-width: 375px) {
    .log-in-buttons {
        margin: 0;
    }

    form {
        padding: 10px 0px 12px 0px;
        margin-bottom: 0px;
        margin-top: 0;
        margin-left: 15px;
        margin-right: 15px;
    }

    .inputs {
        gap: 10px;
    }

    .remember {
        margin-bottom: 10px;
    }
}

@media (max-width: 330px) {
    .login-div {
        height: 38vh;
    }

    form {
        padding: 0px 0px 20px 0px;
    }
}