* {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-style: normal;
}

.Background {
    background-color: #F5F5F5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerLeft {
    position: absolute;
    left: 5.35%;
    right: 87.71%;
    top: 7.81%;
    bottom: 80.28%;
}

.headerRight {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 35px;
    position: absolute;
    width: 287px;
    height: 51px;
    right: 10%;
    top: 67px;
}

.headerLeft p {
    font-weight: 400;
    font-size: 21px;
    line-height: 120%;
    color: #000000;
}

.signUpButton {
    padding: 4px 16px;
    gap: 10px;
    width: 91px;
    height: 51px;
    background: #2A3647;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 120%;
    color: #FFFFFF;
    transition: 200ms;
}

.loginFrame {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    position: absolute;
    max-width: 652px;
    width: 90%;
    height: 513px;
    background: #FFFFFF;
    box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.04);
    border-radius: 30px;
}

.loginHeader {
    font-weight: 700;
    font-size: 61px;
    line-height: 120%;
    text-align: center;
    color: #000000;
}

.loginHeader p {
    margin: 0;
}

.login {
    display: flex;
    flex-direction: column;
    gap: 35px;
    /* width: 100%; */
}

.loginInput {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    max-width: 422px;
    /* width: 90%; */
}

.input {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 13px 21px;
    background: #FFFFFF;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
}

.input input {
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 21px;
    line-height: 120%;
    /* width: 150px; */
}

.input span {
    display: flex;
    justify-content: center;
}

.rememberMe {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.rememberMe a {
    text-decoration: none;
}

.checkbox {
    display: flex;
    gap: 10px;
}

.checkbox input {
    background: linear-gradient(180deg, #F9F9F9 0%, #F0F0F0 100%);
    border: 1px solid #000000;
    border-radius: 3px;
    width: 16px;
    height: 16px;
}

.checkbox p {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000000;
}

.forgot {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #29ABE2;
}

.btn {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.loginButton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 0px;
    gap: 10px;
    width: 145px;
    height: 51px;
    background: #2A3647;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 21px;
    line-height: 120%;
    color: #FFFFFF;
    transition: 200ms;
}

.button:hover {
    cursor: pointer;
    background-color: #29ABE2;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.button:active {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: black;
}

.guestLoginButton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 0px;
    gap: 10px;
    width: 145px;
    height: 51px;
    background: #fff;
    border-radius: 8px;
    border: solid 1px #2A3647;
    font-weight: 700;
    font-size: 21px;
    line-height: 120%;
    color: #2A3647;
    transition: 200ms;
}

.borderButton:hover {
    cursor: pointer;
    color: #29ABE2;
    border-color: #29ABE2;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.borderButton:active {
    cursor: pointer;
    color: #091931;
    border-color: #091931;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.msgBox {
    position: fixed;
    bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 415px;
    height: 74px;
    background: #2A3647;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    flex: none;
    order: 0;
    flex-grow: 0;
    font-size: 23px;
    line-height: 120%;
    color: #FFFFFF;
}

#eyeIMG {
    cursor: pointer;
}

.shake {
    border: 1px solid red;
    position: relative;
    animation: shake 0.2s;
}

@keyframes shake {
    0%,
    100% {
        left: 0px;
    }
    20%,
    80% {
        left: -15px;
    }
    40%,
    60% {
        left: 15px;
    }
}

.dnone {
    display: none !important;
}

.fadeout {
    animation: fade-out 600ms ease-in-out;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.privacy {
    align-self: flex-end;
    color: red;
}

@media(max-width:400px) {
    .headerLeft {
        top: 20px;
    }
    .headerRight {
        top: unset;
        bottom: 15px;
    }
    .loginFrame {
        height: 600px;
    }
    .input input {
        width: 220px;
    }
    .rememberMe {
        flex-direction: column-reverse;
        padding: 0px 10px;
    }
    .btn {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .msgBox {
        bottom: 10px;
    }
}