.body_logIn {
    height: 100vh;
    background-color: #f6f7f8;
}

.header_logIn {
    align-items: start;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 282px;
}

.header_box_resp {
    display: none; 
}

.header_LogIn_resp {
    display: none;
}

.header_LogIn_logo {
    margin: 80px 77px;
}

.header_LogIn_right {
    opacity: 0;
    animation: fadeInContent 0.5s ease-in-out 0.5s forwards;
    animation-delay: 0.5s;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 35px;
    margin-right: 80px;
    margin-top: 67px;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    font-family: 'Inter', sans-serif;    
    position: fixed;
    top: 0;
    right: 0;
    max-width: 1920px;
}

.header_LogIn_right_btn {
    text-decoration: none;
    color: white !important;
    font-size: 16px;
    font-weight: 700px;
    background-color: #2A3647;
    border-radius: 8px;
    padding: 15px 16px;
    gap: 10px;
    border: unset;

    &:hover {
        background-color: #29ABE2;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    &:active {
        background-color: #091931 !important;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
}

.header_LogIn_right_btn a {
    text-decoration: none;
    color: white !important;
    font-size: 16px;
    font-weight: 700px;
}

.main_logIn {
    background-color:#f6f7f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    height: calc(100vh - 36px);
}

.logIn_content {
    opacity: 0;
    animation: fadeInContent 0.5s ease-in-out 0.5s forwards;
    animation-delay: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 115px 48px 115px;
    border-radius: 30px;
    background-color: white;
    width: 652px;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.logIn_content h1 {
    padding-bottom: 16px;
}

.logIn_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.password_container {
    display: flex;	
    flex-direction: column;    
    position: relative;
    width: 422px;
    margin: 0;
}

.input_logIn {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    padding: 15px 32px 15px 15px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    outline: none;
    z-index: 1;
    margin: 0;
}

.input_logIn:focus {
    border: 1px solid #29ABE2;
}

.input_logIn_img {
    position: absolute;
    right: 15px;
    top: 14px;
    z-index: 1;
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.logIn_error {
    height: 12px;
    color: #ff8190;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    position: relative;
    margin-top: 10px;
}

.logIn_btns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 35px;
    margin-top: 32px;
}

.logIn_btn {
    border-radius: 8px;
    border: unset;
    background-color: #2A3647;
    color: white;
    font-size: 21px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 15px 24px 15px 24px;
    gap: 10px;

    &:hover {
        background-color:#29ABE2;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    &:active {
        background-color: #091931 !important;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
}

#guestLogInBtn {
    border-style: solid;
    border-width: 1px;
    border-color: #2A3647;
    text-decoration: none;
    color: #2A3647;
    font-size: 21px;
    font-weight: 700px;
    background-color: white;

    &:hover {
        border-color: #29ABE2;
        color: #29ABE2;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    &:active {
        color: #091931 !important;
        border-color:#091931 !important;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
}

.footer_logIn {
    opacity: 0;
    animation: fadeInContent 0.5s ease-in-out 0.5s forwards;
    animation-delay: 0.5s;
    justify-self: center;
    align-self: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-color: #f6f7f8; 
    width: 251px;
    height: 36px;
}

.footer_logIn a {
    text-decoration: none;
    color: #A8A8A8;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    padding: 8px;
    cursor: pointer;

    &:hover {
        color:#29ABE2;
        font-weight: 700;
        text-decoration: none !important;
    }
}

.mobileHeaderIcon {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: moveToTopLeft 0.5s ease-in-out forwards;
    animation-delay: 0.5s;
    transform-origin: top left;
    z-index: 10;
}

@keyframes moveToTopLeft {
    0% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    100% {
        top: 80px;
        left: 77px;
        transform: translate(0, 0) scale(0.365);
    }
}

