﻿.forgot-password-page {
    flex:1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
    padding-top: 3rem;
    padding-inline: 4rem;
    position: relative;
}

.forgot-password-container {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px #8a8a8a solid;
    padding: 2rem;
    text-align: center;
    max-width: 900px;
    animation: fadeInBottom 0.3s ease-in-out;
    z-index: 1;
    background: #fff;
}

.forgot-password-container-bg {
    animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
    from { background-position: 0 0; }
    to   { background-position: 80px 80px; }
}


/* Diagonal grid + radial mask (hero DNA) */
.forgot-password-container-bg {
    position: absolute;
    top: 0;
    inset: 0;
    background-image:
            linear-gradient(45deg, transparent 49%, #1f2933 49%, #1f2933 51%, transparent 51%),
            linear-gradient(-45deg, transparent 49%, #1f2933 49%, #1f2933 51%, transparent 51%);
    background-size: 48px 48px;
    opacity: 0.15;

    mask-image: radial-gradient(
            ellipse 80% 60% at 30% 20%,
            #000 40%,
            transparent 75%
    );

    pointer-events: none;
}

.log-in-form {
    position: relative;
}


