.signupContainer{
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 50;
	background-color:rgba(36, 36, 36, 0.541) ;
}

.authContainer{
	width: 400px;
	height: 500px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	border-radius: 4px;
	background-color: var(--body-bgColor);
}

.authChoice{
	background-color: cadetblue;
	height: 50px;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

.authChoice button{
	width: 50%;
	height: 100%;
	color: inherit;
	font-size: 1.2rem;
}


.authChoice button:nth-child(1) {
	border-top-left-radius: 4px;

}
.authChoice button:nth-child(2) {
	border-top-right-radius: 4px;
}

.signupForm{
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	height: 400px;
	/* background-color: cornflowerblue; */
}

.signupForm form{
	display: flex;
	flex-direction: column;
	gap: 20px;
	/* border: 1px solid blueviolet; */
}

.signupContainer form input{
    display: block;
    border: 2px solid var(--search-border);
    background-color: rgba(248, 242, 242, 0.842);
    width: 250px;
    border-radius: 3px;
    padding: 10px 15px;
    text-align: center;
    color: rgba(0, 0, 0, 0.822);
	font-size: 1rem;
  
}

.signupContainer form button{
    padding: 15px;
    border-radius: 5px;
    color: white;
    font-weight: bolder;
    font-size: 1rem;
	width: 250px;
    background-color: var(--theme-color);
}

.signupContainer form input:focus{
	outline: none;
	border: 2px solid springgreen;
	background-color: #fff;
	caret-color: black;
	font-size: 1rem;

}






.profile{
    width: 30px;
    height: 30px;
    color: inherit;
    font-weight: bold;
	border-radius: 50%;
    background: var(--color);
    border: 1.6px solid rgb(116, 116, 116);
	
}



.accountMenu{
    position: absolute;
    top:40px;
    right: 0px;
    width: 200px ;
    height: auto;
    background-color: var(--body-bgColor);
    color: inherit;
    border-radius: 5px;
    box-shadow: 0 1px 10px 0 var(--shadow);
    /* border: 2px solid springgreen; */
}

.accountMenu ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* border: 2px solid crimson; */
}

.accountMenu ul li{
    width: 100%;
    padding: 0;
    display: flex;
    /* border:1px solid white; */
}
.accountMenu ul li a{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 0px 10px 15px;
    /* border:1px solid rgb(228, 7, 7); */
}
.accountMenu ul li:nth-child(1) {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgb(207, 207, 207) ;
    width: 100%;
    padding: 0;
    /* border:1px solid rgb(228, 7, 7); */
}

.accountMenu button{
    /* border: 2px solid yellow; */
    display: flex;
    justify-content: center;
    color: inherit;
    width: 100%;
    padding: 10px 5px;
}

.accountMenu button:hover{
    background: rgba(224, 29, 23, 0.692);

}
.logoutIcon{
    margin-right: 7px;
}
.accountMenu ul li a .iconSvg{
    margin: 0 15px 0 0 ;

}
.accountMenu ul li a .profileIcon{
    margin:  0 10px 0 0 ;
}




.dashboardContainer{
    width: 100%;
    height: 90vh;
    /* border: 2px solid black; */
    display: flex;
    justify-content: space-between;
    background-color: var(--body-bgColor);
}


.dashboardSide{
    width: 240px;
    height: 100%;
    background-color: var(--search-border);
}

.dashboardCenter{
    width: calc(100% - 250px);
    height: 100%;
    background-color: var(--nav-bgColor);
    /* border: 1px solid purple; */
}


.sidePicture{
    width: 100%;
    height: 150px;
    background-color: var(--nav-bgColor);
    overflow: hidden;
    /* border: 1px solid purple; */
}


.dashboardSide ul {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;

}

.sidePicture figure{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    gap: 10px;
    overflow: hidden;
}

.sidePicture img{
    width:100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 100% 10%;
    /* margin-bottom: 10px; */
}

.dashboardCenter fieldset form input{
    margin: 3px;
    padding: 4px 6px;
    border-radius: 4px;
    border: 2px solid rgb(94, 100, 97);
    color: inherit;
    background-color: var(--body-bgColor);
}



