*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
.main_box{
    background: url("/photos/photo.jpg");
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;

}
.btn_one i{
    color: white;
    font-size: 30px;
    font-weight: 700;
    position: absolute;
    left: 16px;
    line-height: 60px;
    cursor: pointer;
    transition: all 0.2s linear;
}

.sidebar_menu{
    position: fixed;
    height: 100vh;
    width: 300px;
    background-color: rgb(255, 255, 255,0.1);
    box-shadow: 0 0 4px rgb(255, 255, 255, 0.5);
    left: -350px;
    transition: all 0.2s linear;

}
.sidebar_menu .btn_two i{
    color: grey;
    font-size: 25px;
    line-height: 50px;
    position: absolute;
    left: 275px;
    opacity: 0;
    cursor: pointer;
    transition: all 0.2s linear;

}
.sidebar_menu .logo{
    position: absolute;
    width: 100%;
    line-height:60px ;
    box-shadow: 0 0 4px rgb(255, 255, 255, 0.5);
    height: 60px;
}
.sidebar_menu .logo a{
    position: absolute;
    left: 50px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}
.sidebar_menu .menu{
    position: absolute;
    width: 100%;
    top: 80px;
   
}
.sidebar_menu .menu li{
    margin: 6px;
    padding: 10px 20px;
}
.sidebar_menu .menu i,a{
    color: white;
    text-decoration: none;
    font-size: 20px;
}
.sidebar_menu .menu i{
    padding: 8px;
}
.sidebar_menu .social_media{
    position: absolute;
    left: 25%;
    bottom: 50px;
}
.sidebar_menu .social_media i{
    color: white;
    opacity: 0.5;
    padding: 0 5px;
}
#check{
    display: none;
}
.sidebar_menu .menu li:hover{
    box-shadow: 0 0 4px rgb(255, 255, 255, 0.5);   
}
.btn_one i:hover{
    font-size: 40px;
}
.btn_two i:hover{
    font-size: 30px;
}
.sidebar_menu .social_media i:hover{
    opacity: 1;
    transform: scale(1.2);  
    text-shadow: 0 0 3px goldenrod;
    
}
#check:checked ~ .sidebar_menu{
    left: 0;
}
#check:checked ~ .btn_one{
    opacity: 0;
}
#check:checked ~ .sidebar_menu .btn_two i{
    opacity: 1;
}
.login{
    height: 400px;
    width: 500px;
    border: 3px solid whitesmoke;
    position: relative;
    left: 50% ;
    top: 20%;
    border-radius: 50px;
    background-color: rgb(255, 255, 255,0.1);

}
.id{
    padding: 20px;
    text-align: center;
    position: relative;
    top: 25%;
    font-size: large;
    font-weight: 600;
   
}
#sign-up , #pass{
    width: 50%;
    border-radius: 15px;
    padding: 5px;
    
}
.submit{
    background-color: red;
    width: 100px;
    height: 40px;
    font-weight: 700;
    border-radius: 25px;
    position: relative;
    left: 45%;
    top: 125px;
}
