*{
    padding: 0;
    margin: 0;
    font-family: "Mulish";
}

#wrapper{
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row;

    background-image: url("../../Resources/bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}
#left{
    height: 100vh;
    width: 45vw;

    display: flex;
}
#formwrapper{
    margin: auto;
    width: 40%;

    display: flex;
    flex-flow: column;

    background-color: #f2f2f2;
    padding: 40px 50px 70px 50px;
    border-radius: 3%;
}
#formwrapper h1{
    margin-bottom: 30px;
    text-align: center;
}

.item{
    margin-bottom: 20px;
    display: flex;
    flex-flow: column;
}
.item input{
    padding: 15px;
    border-radius: 5px;
    outline: none;

    border: 2px solid #ccc;
}
.item input:focus{
    border: 2px solid black;
}
.item label{
    margin-bottom: 5px;
    font-weight: bold;

}

#logo{
	width: 100%;
	height: auto;
	
	display: flex;
	margin-bottom: 30px;
	
}
#logo img{
	width: inherit;
	margin: auto;
}

.remember{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 3px;
    gap: 5px;

    font-weight: bold;
}
.remember *{
    cursor: pointer;
    accent-color: black;
}
.remember input:focus{
    accent-color: black;
}
.btn input{
    width: 100%;
    background-color: black;
    color: white;

    border: none;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
}

#right{
    height: 100vh;
    width: 50vw;
    
    display: flex;
}

@media screen and (max-width: 1500px){
    #left{
        width: 45vw;
    }
    #formwrapper{
        width: 80%;
    }
}

@media screen and (max-width: 1023px){
    #left{
        width: 50vw;
    }
    #formwrapper{
        width: 60%;
    }
}

@media screen and (max-width: 967px){
    #left{
        width: 100vw;
    }

    #formwrapper{
        width: 100%;
        margin: 0;
		background: rgba(242, 242, 242, 0.4);
        border-radius: 0;
    }
}