body{
    background-image: url(/imgs/back.svg);
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    font-family: inter;
}

.catalog_button{
    padding: 0px;
    background-color: #ffffff00;
    border: none;
    width: 117px;
    height: 30px;
    cursor: pointer;
    margin-top: 20px;
    margin-left: 10px;
    box-sizing: border-box;
}

.catalogButtonImg{
    width: 117px;
    height: 30px;
}

.mainTextWLogoBlock{
    width: 100%;
    display: flex;
    justify-content: center;
}

.mainTextWLogo{
    background: url(/imgs/mainTextWLogo.svg);
    background-size: auto;
    background-position: center;
    width: 487px;
    height: 84px;
    margin-top: 58px;
    display: flex;
    justify-content: center;
}

.form{
    width: 100%;
    display: grid;
    justify-content: center;
    margin-top: 145px;
    justify-items: center;
}

.authText{
    background: url(/imgs/AuthText.svg);
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    width: 265px;
    height: 19px;
    margin-top: 58px;
}

.regText{
    background: url(/imgs/registration.svg);
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    width: 265px;
    height: 19px;
    margin-top: 58px;
}

.input{
    margin-top: 40px;
    width: 284px;
    height: 28px;
    background: url(/imgs/inputSpace.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: #fff;
    border: none;
    border-radius: 50px;
    outline-offset: none;
    background-position: center;
    padding: 0 0 0 16px;
    font-size: 14px;
}

.inputPass{
    margin-top: 12px;
}

input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

input::placeholder {
    font-weight: bold;
    color: #707070;
}

.loginButton{
    margin-top: 22px;
    width: 300px;
    height: 40px;
    background: url(/imgs/buttonForLogin.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: none;
    border-radius: 50px;
    outline-offset: none;
    background-position: center;
    padding: 0;
    font-size: 14px;
}

.loginButton:hover{
    cursor: pointer;
    background: url(/imgs/buttonForLoginActive.png);
    background-size: 100% 100%;
}

.horizLine{
    background: url(/imgs/horizLine.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 156px;
    height: 6px;
    margin-top: 35px;
}

.anotherWayText{
    background: url(/imgs/anotherWay.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 152px;
    height: 10px;
    margin-top: 35px;
}

.anotherWayButtons{
    width: 94px;
    display: flex;
    justify-content: space-between;
}

.anotherWayLogin{
    margin-top: 12px;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    border: none;
    outline-offset: none;
    background-position: center;
    padding: 0;
    cursor: pointer;
}

.tgLogin{
    background: url(/imgs/tgLogin.png);
    background-size: 100% 100%;
}

.vkLogin{
    background: url(/imgs/vkLogin.png);
    background-size: 100% 100%;
}

.socials{
    width: 102px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 20px;
    left: 20px;
}

.socialButton{
    border: none;
    outline-offset: none;
    background-position: center;
    background: #000;
}

.socialButtonImg{
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    border: none;
    outline-offset: none;
    background-position: center;
    padding: 0;
    cursor: pointer;
}

.notYetButton{
    font-size: 12px;
    font-weight: 100;
    color: white;
    margin-top: 10px;
    outline-offset: none;
    cursor: pointer;
}

/* ====================== КАСТОМНЫЙ ПОПАП ====================== */

.customPopupOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(25px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.customPopup {
    width: 620px;
    max-width: 90vw;
    background: rgba(255,255,255,.04);
    border-radius: 20px;
    box-shadow: -1px -1px 4px rgba(255,255,255,.12) inset,
                2px 2px 5px rgba(0,0,0,.35) inset;
    backdrop-filter: blur(30px);
    overflow: hidden;
}

.customPopupHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.titleOfBlock {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
}

.closePopupBtn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all .2s;
}

.closePopupBtn:hover { background: rgba(255,255,255,.12); }

.customPopupContent {
    padding: 25px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.customPopupFooter {
    padding: 20px 25px;
    text-align: right;
    border-top: 1px solid rgba(255,255,255,.08);
}
