.signUpContainer{
    position: fixed;
    display: flex;
    top: 0;
    right: 0;
    width: 35vw;
    height: 100vh;
    justify-content: flex-end;
    z-index: -1;
    min-width: 380px;
}
.signupInnerContainer{
    position: relative;
    width: 0%;
    padding: 40px 0px;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    background-color: white;
    white-space: nowrap;
    z-index: 5;
}

.signupXBtn{
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3vh;
    cursor: pointer;
}
.signupBackBtn{
    position: absolute;
    top: 26px;
    right: 40px;
    font-size: 20px;
    display: none;
    cursor: pointer;
}
.signupInnerContainer form{
    display: flex;
    padding: 0 2px;
    flex-direction: column;
    width: 70%;
    height: fit-content;
}
.signupInnerContainer form h1{
    font-size: 28px;
    margin: 0px 0 6px 0;
}
.signupInnerContainer form label{
    font-size: 18px;
    margin: 8px 0 0 0;
}
.signupInnerContainer form input
 ,.signupInnerContainer form select{
    /* margin: 0 0 15px 0; */
    width: -webkit-fill-available;
    height: 24px;
    font-size: 17px;
    width: 100%;
}
.signupInputPswContainer{
    position: relative;
    display: flex;
    align-items: center;
}
.signupPswEye{
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 15px;
    cursor: pointer;
}
.refresh2{
	display: flex;
	align-items: center;
}
.signupSubmit{
    width: auto;
    text-align: center;
    background: black;
    color: white;
    padding: 8px 0;
    border-radius: 10px;
    cursor: pointer;
}

@media screen and (min-width: 800px){ 
	
}

@media screen and (min-width: 896px) and (max-width: 1024px){ 
    .signUpContainer{
        width: 50vw;
    }
}

@media screen and (max-width:896px){ 
    .signUpContainer{
        width: 100vw;
    }
	
}
@media screen and (max-width:896px) and (orientation: landscape) { 
	.signUpContainer{
        width: 35vw;
        
    }
    
}