.login_form_block {
    background-color: #f3f5f9;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 10000;
    display: none;
}

.login_form {
    position: relative;
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    top: calc(100% / 2 - 209px);
    /* padding-left: 10px; */
    /* padding-right: 10px; */
    max-width: 350px;
}

.login_form input {
    background-color: White;
    border: 1px solid #D3D3D3;
    padding: 14px;
    font-family: VekaRegular;
    font-size: 14px;
    margin: 5px;
    color: Black;
    border-radius: 0px;
    width: calc(100% - 40px);
}

.login_form button {
    transition: 200ms ease-out;
    padding: 0 16px;
    height: 47px;
    background-color: #0069b4;
    color: White;
    border: 0px Solid #d3d3d3;
    font-family: VekaRegular;
    font-size: 17px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 0px;
    width: calc(100% - 10px);
    margin-left: 5px;
}

.login_form .logo_block {
    display: flex;
    justify-content: center; /* горизонтальное выравнивание */
    align-items: center;
}

.login_form .logo_block .logo
{
    position: relative;
    width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.login_form .logo_block .logo .org_name {
    font-family: VekaBold;
    font-size: 20px;
    color: #0069b4;
    position: absolute;
    text-transform: uppercase;
    top: 1px;
    left: 133px;
}

.login_form .logo_block .logo .org_info {
    font-family: VekaLight;
    font-size: 16px;
    color: #84858A;
    position: absolute;
    top: 24px;
    left: 133px;
    line-height: 17px;
}

.login_form .logo_block .logo img {
    position: relative;
    height: 80px;
    margin-top: 6px;
    margin-left: 20px;
    float: left;
}