@import 'style.css';

:root {
    --deg-: '0deg';
}




#lockformulaire {
    margin-top: 35%;
}


.decobloclock {
    height: 25%;
    width: 200%;

    position: absolute;
    transform: translate(-50%, -50%) rotate(314deg);

    left: 50%;
    top: 50%;
    background: radial-gradient(ellipse at 0% 100%, rgb(0 78 255) 0%, rgb(255 0 0) 20%, rgb(0 118 255 / 81%) 35%, rgb(0 0 255 / 63%) 60%, #ff3b3b 80%);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    opacity: 1;
}


.decobloclock::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 0, 255, 0.2) 20%,
            transparent 50%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.decobloclock::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 40% 90%, rgba(0, 255, 150, 0.08), transparent 60%),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 0, 0.08), transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(255, 100, 255, 0.07), transparent 50%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}



#resetpassword {
    color: #eee;
    font-family: var(--font-fam-one);
    font-size: 0.7rem;
    font-weight: 100;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    cursor: pointer;

}

.logoLock {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}




.backgroundB {
    width: auto;
    background: linear-gradient(var(--deg-), rgb(255 0 67) 0%, rgb(0 7 185) 88%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: background 20s linear;
}



.backgroundB::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #ffffffd4;
    filter: blur(3px);
    /* Intensifie l'effet lumineux */
    z-index: -1;
    /* Place derrière la div principale */
}


.main {
    transform: translateX(-50px);
    width: 100%;
}

#contentforgotpass{
    width: 100%;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (min-width: 1024px) {

    #lockformulaire{
        margin-top: 0%;
    }

}