body{
    background-color:lightblue;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
    padding-bottom: px;

}
.header{
    height: 600px;
    width: 800px;
    background-color: whitesmoke;
    border-radius: 10px;
    margin-top: 30px;
    margin-left: 140px;
    padding-left: 20px;
    padding-top: 30px;
    display: flex;
    flex-direction: row;
}
.container-1{
    height: 550px;
    width: 550px;
    background-image: url(assets/images/bg-sidebar-desktop.svg);
    background-position: unset;
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-top: 25px;
}
#click-1{
    display: flex;
    flex-direction: row;
    color: black;
}
#click-1 h3{
    height: 25px;
    width: 25px;
    text-align: center;
    border-radius: 35px;
    border: 1px solid rgb(218, 194, 168);
    opacity: 0.8;
}
#click-1 nav{
    padding-left: 30px;
    color: rgb(218, 194, 168);
}
#click-2{
    display: flex;
    flex-direction: row;
    color: rgb(218, 194, 168);
}
#click-2 h3{
    height: 25px;
    width: 25px;
    text-align: center;
    border-radius: 35px;
    border: 1px solid rgb(218, 194, 168);
    opacity: 0.8;
}
#click-2 nav{
    padding-left: 30px;
}
#click-3{
    display: flex;
    flex-direction: row;
    color: rgb(218, 194, 168);
}
#click-3 h3{
    height: 25px;
    width: 25px;
    text-align: center;
    border-radius: 35px;
    border: 1px solid rgb(218, 194, 168);
    opacity: 0.8;
}
#click-3 nav{
    padding-left: 30px;
}
#click-4{
    display: flex;
    flex-direction: row;
    color: rgb(218, 194, 168);
}
#click-4 h3{
    height: 25px;
    width: 25px;
    text-align: center;
    border-radius: 35px;
    border: 1px solid rgb(218, 194, 168);
    opacity: 0.8;
}
#click-4 nav{
    padding-left: 30px;
}
nav h4{
    color: antiquewhite;
}
h3:hover{
    background-color: beige;
    color: black;
    opacity: 1;
}
.container-2{
margin-top: 40px;
margin-right: 70px;
width: 50%;
padding-top: 10px;
padding-left: 5px;
box-shadow: 20px 20px 20px 0px rgba(0, 0,0,0);
}
button{
    height: 40px;
    width: 120px;
    background-color: rgb(37, 37, 88);
    color: bisque;
    margin-left: 300px;
    margin-top: 90px;
    border-radius: 10px;
    opacity: 0.8;
    cursor: pointer;
}
button:hover{
    opacity: 1;
}

input{
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    border-radius: 5px;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='number']:focus{
background-color: azure;
outline: none;
}
@media (max-width: 750px ){
    body {
        width: 10px;
        display: block;
        size: none;
        background-color: antiquewhite;
    }
    .header{
        width: 400px;
        display: flex;
        flex-direction: column;
        background-color: azure;
        size:  none;
    }
    .container-1{
        background-image: url(assets/images/bg-sidebar-mobile.svg);
        background-repeat: no-repeat;
        background-size: auto;
        display: flex;
        flex-direction: row;
        padding-top: 40px;
        padding-left: 80px;
        padding-bottom: 40px;
        color: white;
        position: relative;
    }
     nav{
        display: none;
    }
    h3{
        margin-left: 20px;
    }

    .container-2{
        height: 400px;
        width: 300px;
        background-color: antiquewhite;
        border-radius: 8px;
        position: absolute;
        margin-top: 100px;
        margin-left: 30px;
        padding-left: 20px;
        padding-top: 10px;
    }
    input{
        width: 80%;
    }

}