.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: #F9FAFC;
}

@media only screen and (max-width: 700px) {
    .content {
        display: flex;
        width: 100%;
        padding: 32px 32px 60px 32px;
        flex-direction: column;
        align-items: center;
        height: calc(100vh - 63px);
        gap: 32px;
    }
}

.bloc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

@media only screen and (max-width: 700px) {
    .bloc {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 64px;
        align-self: stretch;
    }
}

.bloc .title-logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    gap: 48px;
}

@media only screen and (max-width: 700px) {
    .bloc .title-logo .logo{
        width: 160px;
        height: 62.233px;
    }
}

@media only screen and (max-width: 700px) {
    .bloc .title-logo{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 48px;
        align-self: stretch;
    }
}

.bloc .title-logo .title{
    width: 600px;

    color: #15253F;
    text-align: center;
    font-family: "Plus Jakarta Sans", serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
}



@media only screen and (max-width: 700px) {
    .bloc .title-logo .title{
        width: 100%;
        align-self: stretch;
        font-size: 28px;
    }
}

.bloc .login{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 360px;
    gap: 24px;


    color: #15253F;
    font-family: "Plus Jakarta Sans", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media only screen and (max-width: 700px) {
    .bloc .login {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        width: 100%;
        align-self: stretch;
    }
}

.bloc .login .mail-block{
    width: 100%;
    height: 80px;
    flex-shrink: 0;
    align-self: stretch;
}


.bloc .login .password-block{
    width: 100%;
    flex-shrink: 0;
    align-self: stretch;
}

.bloc .login input{
    padding-left: 16px;
    display: flex;
    width: 100%;
    height: 52px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;

    color: #000000;
    font-family: "Plus Jakarta Sans", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    border-radius: 6px;
    border: 1px solid #E1E7ED;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(44, 39, 56, 0.04);
}

.bloc .login input::placeholder{
    color: #6787A5;
    font-family: "Plus Jakarta Sans", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bloc .login input:focus{
    border: 1px solid #8286FE;
    outline: #8286FE;
}

.bloc .login .btn-login {
    display: flex;
    padding: 12px 0;
    justify-content: center;
    align-items: center;
    gap: 6px;
    align-self: stretch;

    border-radius: 64px;
    background: #D9FF97;

    color: #15253F;
    font-family: "Plus Jakarta Sans",serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28.5px;

    outline: none;
    border: none;

    transition: all 0.2s;
}

.bloc .login .btn-login:hover{
    display: inline-flex;
    padding: 12px 170px 12px 0;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 64px;
    background: #B5F644;
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

.bloc .login .btn-login:active{
    outline: none;
}

.bloc .login .alert-login{
    margin-top: 8px;
    color: #FF7171;
    font-family: "Plus Jakarta Sans", serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bloc .login .reset-password{
    margin: 12px 0;
    color: #8286FE;
    font-family: "Plus Jakarta Sans", serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}