*,
*::after,
*::before {
    box-sizing: border-box;
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    height: 100%;
    color: #000000;
}
.page{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    height: 100vh;
}
.block{
    width: 520px;
    position: relative;
    padding: 25px 15px;
    box-shadow: 0px 0px 9px 0px rgba(34, 60, 80, 0.2);
    background: #fff;
}
.block-body__form{
    margin-bottom: 60px;
}
.block-body__form-content{
    width: 100%;
}
.block-body__form-label{
    display: block;
    font-size: 16px;
    width: 100%;
    margin-bottom: 20px;
    font-weight: 500;
}
.block-body__label-input{
    width: 100%;
    outline: none !important;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: black;
    padding: 10px 15px;
    border: 1px solid #c7d1e1;
    border-radius: 6px;
}
.block-body__label-password{
    position: relative;
    width: 100%;
    display: block;
}
.block-body__label-password__show{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    height: 100%;
    width: 50px;
    padding: 10px;
    border: 1px solid #c7d1e1;
    border-radius: 0 6px 6px 0;
    background: #efeef9;
}
.block-body__label-password__show img{
    width: 100%;
    height: 100%;
}
.block-body__form-button{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #ffffff;
    border-radius: 6px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    background: #6059c3;
    border: none;
    padding: 13px 15px;
    cursor: pointer;
    transition: .4s all;
}
.block-body__form-button:hover{
    background: #5b55b3;
}
.block-body__forgot{
    color: #6059c3;
    font-size: 16px;
    cursor: pointer;
}

.wrapper__attention{
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.wrapper__attention-block {
    max-width: 630px;
    width: 100%;
    background: #fff;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    box-shadow:
            0 0.1px 2.2px rgb(0 0 0 / 2%),
            0 0.3px 5.3px rgb(0 0 0 / 3%),
            0 0.5px 10px rgb(0 0 0 / 4%),
            0 0.9px 17.9px rgb(0 0 0 / 4%),
            0 1.7px 33.4px rgb(0 0 0 / 5%),
            0 4px 80px rgb(0 0 0 / 7%);
}

.close_modal {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    opacity: 1;
    transition: .2s all;
}

.close_modal::after,
.close_modal::before{
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    transform: rotate(45deg);
    background: #c7c7c7;
    left: 5px;
    top: 13px;
}
.close_modal::before{
    content: "";
    position: absolute;
    transform: rotate(-45deg);
}
.wrapper__title {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 15px;
    display: block;
    font-size: 24px;
    line-height: 30px;
}
.wrapper__attention-list {
    max-width: 420px;
    margin: 0 auto;
}