body{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: black;
}

a{
    text-decoration: none;
}
#Main_Container{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.744);
    top: 0px;
    position: fixed;
    background-image: url("../../../assests/img/local/BG\ Deksktop.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Main_Container form{
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    min-width: 400px;
    color: rgb(159, 159, 159);
}

#Main_Container form input{
    background-color: #272727;
    border: none;
    outline: none;
    color: white;
}



#loader{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.293);
    position: fixed;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

#loader img{
    width: 40px;
}

.user_photo_section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#user_photo_input{
    margin-top: -50px;
    width: 40px;
    opacity: 0%;
}
#user_photo_preview{
    width: 90px;
    height: 90px;
    background-color: rgb(70, 70, 70);
    border-radius: 100px;
    cursor: pointer;
    background-size: cover; 
    background-position: center;
    background-image: url("../../../assests/img/local/user-demo.jpg");
}

#header{
    position: fixed;
    top: 0px;
    width: 100%;
    padding: 15px 10px;
    background-color: rgba(0, 0, 0, 0.364);
    z-index: 10;

}
#header p{
    margin: 0px;
    padding: 0px;
    color: #ffffffd1;
    text-align: center;
    font-weight: 600;
}



#user_reset_profile{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}


#user_reset_profile .profile{
    width: 80px;
    height: 80px;
    background-color: rgb(49, 49, 49);
    border-radius: 100px;
    background-position: center;
    background-size: cover;
}















@media (max-width: 768px) {
    #Main_Container{
        background-image: url("../../../assests/img/local/BG Mobile.jpg");
    }
    #Main_Container form{
        min-width: 90%;
    }
}

























