html{
    background-color: #0E0D10;
}

.section{
    height: 100vh;
    display: flex;
}

.block_logo{
    background-color: #0E0D10;
    padding: 0;
    font-family: Montserrat;
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke-color: #000;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.12px;
    flex-shrink: 0;
}
.container_login{
    width: 40%;
    display: flex;
    flex-direction: column;
    padding: 40px;
}
.container_img{
    width: 60%;
    display: flex;
}
.img{
    width: 100%;
    height: 100%;
    border-radius: 111px 0px 0px 111px;
    background: 
        linear-gradient(180deg, #0068F7 0%, #000 120%),
        url('../../../UI/image/bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.login{
    flex:1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register{
    flex:1;
    display: flex;
    justify-content: center;
}
.block_login{
    width: 322px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: auto 0;

    a{
        text-decoration: none;
    }
}

.block_login p{
    color: #FFF;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.input_item{
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #4E4D52;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.input{
    display:flex;
    padding: 16px;
    align-items: center;
    border-radius: 16px;
    background: #212025;
    color: #9E9DA2;
    border: none;
    outline: none;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal; 
    color:#fff;
    height: 16px;
}

.url_item{
    border-radius: 16px;
    background: #212025;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    height: 21px;
}

.url_label{
    color: #4E4D52;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.url_val{
    display: inline-flex;
    align-items: center;
    background: #212025;   
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal; 
    border: none;
    outline: none;
    width: 80%;
    color: #fff;
}

.btn_login,.btn_tg,.btn_reg{
    display: flex;
    padding: 16px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #FFF;
    color: #0E0D10;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    border: none;
}

.btn_reg{
    color:#fff;
    background-color: #0068F7;
}

.btn_tg{
    height: 16px;
    user-select: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.btn_login:active,.btn_tg:active{
    background-color: #ffffff63;
}

.modal_notification{
    position: fixed;
    width: 300px;
    min-height: 50px;
    top: 20px;
    right: 20px;
    z-index: 3;
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.block_notification{
    padding: 24px;
    min-height: 50px;
    border:none;
    border-radius: 16px;
    background: rgba(83, 87, 97, 0.30);
    backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    animation: slideDown 0.4s ease-out;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
}

.svg_notification_close{
    position: absolute;
    top:8px;
    right: 8px;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.block_notification.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

@media(max-width:700px){
    .container_img{
        display: none;
    }
    .container_login{
        width: calc(100% - 80px);
    }
}