.auth-forgot-wrap{
    margin-top: 14px;
}

.auth-forgot-link{
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 58px;
    padding: 12px 14px;
    border-radius: 16px;
    color: rgba(255,255,255,.92);
    background:
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 14px 28px rgba(0,0,0,.14);
    overflow: hidden;
    transition: .22s ease;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.auth-forgot-link::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 18% 20%, rgba(124,216,255,.26), transparent 34%),
    linear-gradient(135deg, rgba(23,120,255,.14), rgba(124,216,255,.04));
    opacity:.75;
    pointer-events:none;
}

.auth-forgot-link::after{
    content:"";
    position:absolute;
    top:-60%;
    left:-45%;
    width:42%;
    height:220%;
    background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.24),
    transparent
    );
    transform: rotate(18deg);
    opacity:0;
    transition:.35s ease;
}

.auth-forgot-link:hover,
.auth-forgot-link:focus{
    color:#fff;
    transform: translateY(-2px);
    border-color: rgba(124,216,255,.38);
    box-shadow:
    0 18px 34px rgba(0,0,0,.22),
    0 0 0 4px rgba(124,216,255,.08);
}

.auth-forgot-link:hover::after,
.auth-forgot-link:focus::after{
    left:110%;
    opacity:1;
}

.auth-forgot-link > *{
    position:relative;
    z-index:1;
}

.auth-forgot-icon{
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius: 14px;
    color:#fff;
    background: linear-gradient(135deg, #1778ff, #7cd8ff);
    box-shadow: 0 10px 22px rgba(23,120,255,.28);
}

.auth-forgot-text{
    display:flex;
    flex-direction:column;
    min-width:0;
    flex:1 1 auto;
    line-height:1.25;
}

.auth-forgot-text strong{
    display:block;
    color:#fff;
    font-family:'Poppins', sans-serif;
    font-size:14px;
    font-weight:800;
    letter-spacing:.1px;
}

.auth-forgot-text small{
    display:block;
    margin-top:3px;
    color:rgba(255,255,255,.68);
    font-size:12px;
    font-weight:600;
}

.auth-forgot-arrow{
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#dff6ff;
    background: rgba(255,255,255,.10);
    transition:.22s ease;
}

.auth-forgot-link:hover .auth-forgot-arrow,
.auth-forgot-link:focus .auth-forgot-arrow{
    transform: translateX(3px);
    background: rgba(255,255,255,.18);
}

@media (max-width: 420px){
    .auth-forgot-link{
    min-height: 54px;
    padding: 11px 12px;
    }

    .auth-forgot-icon{
    width:36px;
    height:36px;
    flex-basis:36px;
    border-radius:12px;
    }

    .auth-forgot-text small{
    font-size:11px;
    }
}