*,
*::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: 13px;
    line-height: 18px;
    height: 100%;
    color: #000000;
}
.page{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    height: 100vh;
}
.block{
    max-width: 400px;
    position: relative;
    width: 100%;
    border-radius: 20px;
    font-size: 21px;
    color: #48CAE4;
    padding: 30px 20px;
}
.login_img{
    width: 50px;
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}
.block-body__form-content{
    width: 100%;
    margin-bottom: 80px;
}
.block-body__form-label{
    display: block;
    font-size: 16px;
    color: black;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 30px;
    font-weight: bold;
}
.block-body__form-label:last-child{
    margin-bottom: 0;
}
.block-body__label-input{
    width: 100%;
    outline: none !important;
    border:none !important;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    border: 0;
    height: 30px;
    border-bottom: 1px solid black !important;
    border-radius: 0px !important;
    -webkit-appearance: none !important;
    appearance: none;
}

.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;
}