.auth-input
{
	width: 100px;
	height: 30px;
    border: unset;
    padding: 5px;
}

.auth-button
{
	transition: all 0.5s;
	width: 75px;
	height: 30px;
    background-color: cornflowerblue;
}

.auth-button:hover
{	
    background-color: darkcyan;
}

.auth-div
{
	position: fixed;
	transition: all 1s ease;
}

.login-auth-div
{
	right: -305px;
	
}

.login-auth-div.show
{
    transform: translateX(-325px);
}

.logout-auth-div
{
	right: 20px;
	top: -80px;
}

.logout-auth-div.show
{
    transform: translateY(95px);
}