.top__header {

    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    
}

.top__header__expanded{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100vw;
    height: 8.75rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-black-1);

}

.top__header__expanded > ul{
    width: 100%;
    height: 100%;
    position: relative;
}

.topElement > img {
    width: 12rem;
}

.topElement{
    display: flex;
    height: 35%;
}

.bottomElement{
    height: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.closeIcon{
    font-size: 1.6rem;
    position: absolute;
    top: 1.2rem;
    right: 2rem;
    color:var(--color-white-2)
}

/*  */
.main__singup_form{
    
    width: 100vw;
    height: 100vh;
    background-color: var(--color-white-2);
    display: flex;
    justify-content: center;
    
}

.container__form{
    display: flex;
    flex-direction: column;
    height: auto;
    width: 90%;
    padding: 2rem 1rem;
    gap: .5rem;
}

.container__form > h1{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var( --color-base-1);
}

.container__form > form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.container__form > form > input{
    height: 2.75rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: .5rem;
}


.return{
    border: 1px solid var(--color-black-1);
    outline: none;
    width: 100%;
}

.return:hover{
    background-color: var(--white-standard);
    border: 1px solid var(--purple-buttons);
    color: var(--purple-buttons);
}