

.action-form{
    min-height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    overflow-x: auto;
    overflow-y: auto;
    gap: 2rem
}

.action-form * {
    flex: 0 0 auto;
}

.form-wrapper{
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--dark-beige);
    width: 16rem;
    max-height: 350px;
    border-radius: 15px;
    overflow: auto;
    overflow-x: auto;
    overflow-y: auto;
    padding: 10px;
    
    box-shadow: 0px 5px #888888;

}

.form-lifter{
    padding-bottom: 60px;
}

.login-signup-wrapper{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    top: 15px;
    background-color: var(--dark-grey-beige);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px #888888;
}

.login-signup-wrapper button{
    background-color: transparent;
    border: none;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

button:disabled{
    background-color: var(--grey-white);
}

.fields{
    /* height: 80%; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 13rem;
}

.form-field{
    position: relative;
    height: 3rem;
    line-height: 2rem;
    width: 13rem;
}

.form-field input,
.form-field select{
    position: absolute;
    width: 12rem;
    outline: none;
    font-size: 1rem;
    padding: 0.5rem 0.5rem;
    line-height: 100%;
    border-radius: 10px;
    border: 2px solid;
    background-color: transparent;
    transition: 0.2s ease;
    z-index: 2;
}

.form-field label{
    display: flex;
    position: absolute;
    font-size: 1rem;
    padding: 0 1rem;
    margin: 0;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    width: auto;
    transition: height 0.2s ease, transform 0.2s ease, font-size 0.2s ease, padding 0.2s ease, color 0.2s ease;
    background-color: var(--dark-beige);
    transform: translate(0,0);
    color: inherit;
}

input::placeholder{
    color: transparent;
}

.fields div input:focus,
.fields div input:not(:placeholder-shown),
.fields div select:focus,
.fields div select:not(:placeholder-shown){
    border-color: var(--grey-white);
}

.fields div input:focus + label,
.fields div input:not(:placeholder-shown) + label,
.fields div select:focus + label,
.fields div select:not(:placeholder-shown) + label
{
    height: 1rem;
    line-height: 1rem;
    transform: translate(4px,-8px);
    z-index: 3;
    font-size: .8rem;
    color: var(--grey-white);
}

.action-btn{
    position: relative;
    bottom: 15px;
}

.info{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.uitat-parola{
    color: var(--grey-white);
}

.bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
}