.login-title h1 {
    font-family: 'sfprodisplay_bold';
    font-size: 84px;
    text-align: center;
    user-select: text;
    margin-top: 140px;

    /* Делаем текст прозрачным под маской */
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.116) 0%,
        rgba(0,0,0,1) 60%
    );
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
}
.login-title h1::selection {
    color: black;
    background-color: white;
}


.login-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.login-form {
    width: 100%;
}
.pass_title {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
}
.email_title,
.pass_title {
    font-family: 'sfprodisplay';
    padding-bottom: 4px;
    color: #969696;
}
.input_cont {
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 345px;
    border-radius: 8px;
    background-clip: padding-box;
    transition-duration: .2s;
}
.input_cont:hover {
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.input_cont:focus-within {
    border: 1px solid white;
}
.fieldinput {
    width: 100%;
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 9px 16px;
}
.login_btn {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
        box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.979),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 0px 0px rgba(255, 255, 255, 0);
    overflow: hidden;
    padding: 10px 30px;
    font-size: 18px;
    transition: 0.3s;

    border: none;
    margin-top: 24px;
    width: 100%;
}
.login_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px; /* толщина границы */
    
    background:
        radial-gradient(120% 120% at 0% 100%, rgba(255,255,255,0.32) 0%, transparent 65%),
        radial-gradient(120% 120% at 100% 0%, rgba(255,255,255,0.32) 0%, transparent 65%);

    /* Вырезаем центр, оставляя только границу */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    transition: --glow-opacity 0.4s ease;
}
.login_btn:hover {
    filter: brightness(1.5);
}


.divider {
    display: flex;
    align-items: center;
    text-align: center;
}
.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-top: 4px;
}
.divider span {
    padding: 12px 10px;
    color: white;
}