body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Open Sans;
}

.login-header-container {
    position: absolute;
    top: 67px;
    width: 95%;
    display: flex;
    justify-content: space-between;
}

.join-logo-blue {
    width: 6.94%;
    height: 11.91vh;
    animation: realLogoAnimate 1.5s forwards;
}

 @keyframes realLogoAnimate{
    from{
        position: relative;
        width: 50%;
        height: 50vh;
        filter: invert(1) grayscale(1) brightness(100);
    }
 }


.sign-up-link-container {
    display: flex;
    align-items: center;
    width: 280px;
    height: 48px;
}

.sign-up-link-question {
    margin-right: 17.5px;
}

.sign-up-link-link {
    margin-left: 17.5px;
    color: white;
    background-color: rgb(69, 137, 255);
    padding: 12px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign-up-link-link:hover {
    border-radius: 10px;
    background: var(--Ligth-blue, #005DFF);
    /* stronger */
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
    cursor: pointer;
}

.login-container {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    width: 45%;
    height: 510px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.login-title {
    height: 74px;
    width: 150px;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    border-bottom: 3px solid rgb(69, 137, 255);
    color: #000;
    text-align: center;
    font-family: Open Sans;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 57.6px */
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-fields-container {
    --parentWidth: 422px;
    width: var(--parentWidth);
    height: 152px;
    margin-bottom: 35px;
}

.input-field-email-container {
    display: flex;
    align-items: center;
    width: auto;
    justify-content: center;
    border-bottom: 1px solid rgb(220, 220, 220);
    height: 48px;
    margin-bottom: 28px;
}

.input-field-email {
    width: 90%;
    border: none;
    height: 24px;
    outline: none;
}

.input-field-email::placeholder

/* Chrome, Firefox, Opera, Safari 10.1+ */
    {
    color: rgb(220, 220, 220);
    opacity: 1;
    /*Firefox*/
}

.input-field-email:-ms-input-placeholder

/* Internet Explorer 10-11 */
    {
    color: rgb(220, 220, 220);
}

.input-field-email::-ms-input-placeholder

/* Microsoft Edge */
    {
    color: rgb(220, 220, 220);
}

.login-password-icon-contaienr {
    width: 24px;
    height: 24px;
}

.login-email-icon {
    width: 20px;
    height: 16px;
}

.input-field-password-container {
    display: flex;
    align-items: center;
    width: auto;
    justify-content: center;
    border-bottom: 1px solid rgb(220, 220, 220);
    height: 48px;
    margin-bottom: 28px;
}

.input-field-password {
    width: 90%;
    border: none;
    height: 24px;
    outline: none;
}

.input-field-password::placeholder

/* Chrome, Firefox, Opera, Safari 10.1+ */
    {
    color: rgb(220, 220, 220);
    opacity: 1;
    /*Firefox*/
}

.input-field-password:-ms-input-placeholder

/* Internet Explorer 10-11 */
    {
    color: rgb(220, 220, 220);
}

.input-field-password::-ms-input-placeholder

/* Microsoft Edge */
    {
    color: rgb(220, 220, 220);
}

.login-password-icon-contaienr {
    width: 24px;
    height: 24px;
}

.login-password-icon {
    width: 16px;
    height: 21px;
}

/*custom checkbox*/

.checkbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: 5px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 16px;
    width: 16px;
    background-color: white;
    border: 2px solid rgb(69, 137, 255);
    border-radius: 3px;
    cursor: pointer;
    margin-right: 8px;
    display: flex;
    justify-content: center;
}

.checkbox-container:hover input~.checkmark {
    background-color: rgb(119, 169, 255);
}

.checkbox-container input:checked~.checkmark {
    background-color: rgb(69, 137, 255);
}

.checkmark:after {
    content: "";
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    width: 5px;
    bottom: 20px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*custom checkbox end */

.f-password-link {
    color: rgb(69, 137, 255);
    text-decoration: none;
}

.f-password-link:hover {
    color: rgb(119, 169, 255);
}

.f-password-link:focus {
    color: rgb(22, 79, 177)
}

.account-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 355px;
    margin-bottom: 35px;
}

.login-link-container {
    display: flex;
    justify-content: space-between;
    width: 367px;
}

.login-button {
    font-size: 23px;
    font-weight: 400;
    border: none;
    background-color: rgb(69, 137, 255);
    color: white;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 35px;
    padding-right: 35px;
    border-radius: 8px;
    cursor: pointer;
}

.login-button:hover {
    border-radius: 10px;
    background: var(--Ligth-blue, #005DFF);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
}

.login-guest-button {
    font-size: 23px;
    font-weight: 400;
    color: #647188;
    border: 1px solid #647188;
    border-radius: 8px;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 35px;
    padding-right: 35px;
    cursor: pointer;
    background-color: white;
    text-decoration: none;
}

.login-guest-button:hover {
    background-color: rgb(223, 223, 223);
}

.legal-container {
    position: absolute;
    width: 100%;
    top: 92.48%;
    left: 0;
    display: flex;
    justify-content: center;
}

.legal {
    width: 240px;
    display: flex;
    justify-content: space-between;
}

.legal a {
    text-decoration: none;
    color: #42526E;
}

.message {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 350px;
    border-radius: 20px;
    background: var(--version-2-main-color, #4589FF);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
    color: white;
    z-index: 50;
}

.message-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    height: 80px;
}

.login-checkmark-unchecked {
    cursor: pointer;
}

.login-checkmark-unchecked:hover {
    cursor: pointer;
    border-radius: 51px;
    background: #EDF2FA;
}

.login-checkmark-checked {
    cursor: pointer;
}

.login-checkmark-checked:hover {
    cursor: pointer;
    border-radius: 51px;
    background: #EDF2FA;
}

.d-none {
    display: none !important;
}

.login-media-sign-up {
    display: none;
}

.sign-up-link-container-media {
    display: flex;
    align-items: center;
    width: 236px;
    height: 48px;
    display: none;
}

.start-screen-overlay {
    z-index: 100;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    background: var(--version-2-main-color, #4589FF);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: start-screen-animation 1.5s forwards;
    position: fixed;
    opacity: 1;
}

@keyframes start-screen-animation {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }

}

@-webkit-keyframes start-screen-animation {
    from {
        opacity: 1;
    }

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

.logo-animation {
    animation: logo-animation 1.5s forwards;
}

@keyframes logo-animation {
    from {
        position: absolute;
        left: 50%;
        top: 50%;
    }
    to {
        position: absolute;
        left: 5%;
        top: 67px;
    }
}


@-webkit-keyframes logo-animation {
    from {
        position: absolute;
        left: 50%;
        top: 50%;
    }
    to {
        position: absolute;
        left: 5%;
        top: 67px;
    }
}

@media (min-width: 1600px) {
    .login-container {
        width: 700px;
    }
}