.loginWrap{
	width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;	
}
.inputWrap{
	display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}
.inputWrap input::placeholder{
	color: rgb(168, 168, 168);
}
.inputWrap input{
    width: 240px;
    border: solid 1px rgb(85, 85, 85);
    background-color: rgb(37, 41, 46);
    color: rgb(245, 245, 245);
    font-size: 18px;
    height: 37px;
    border-radius: 5px;
    padding: 0 10px;
}
.loginWrap button{
	padding: 0px 10px;
    width: 260px;
    height: 37px;
    background-color: rgba(74, 93, 249);
    color: rgb(255, 255, 255);
    border: solid 1px rgba(74, 93, 249);
    font-size: 15px;
    border-radius: 5px;
}
.loginWrap img{
	width: 300px;
    margin-bottom: 20px;
}