@import 'style.css';

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


#contentlock{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

#lockformulaire {
    margin-top: 35%;
}




.decobloclock {
    height: 15%;
    width: 400%;

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

    left: 50%;
    top: 50%;
    background: radial-gradient(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    background-size: 200% auto;
    animation: gradientMove 10s linear infinite;
    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(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    filter: blur(5px);
    pointer-events: none;
    z-index: 1;
    background-size: 200% auto;
    animation: gradientMove 10s linear infinite;

}

.decobloclock::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 100%, rgb(0, 255, 233) 0%, rgb(207, 125, 255) 20%, rgba(207, 125, 255, 0.8) 35%, rgb(0, 255, 233) 60%, #cf7dff 80%);
    filter: blur(55px);
    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%;
    }

}