body{
    height: 100%;
    width: 100%;
    margin:0;
    padding:0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    background: url(./images/createnewuserpgbg.jpg) no-repeat center /cover;
    overflow: hidden;
}
.nav-bar{
    height: 5rem;
    width: 100%;
    background: linear-gradient(to right, indigo , purple );
}
.parentcontainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80%;
    width: 35%;
    border-radius: 0.5rem;
    justify-self: center;
    background: url(./images/userinput.jpg) no-repeat center /cover;
    gap: 2rem;
}

@media (max-width: 768px) {
    .parentcontainer{
        height: 60%;
        width: 60%;
        justify-content: space-evenly;
    }    
}
.profile-picture{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: gray;
    cursor: pointer;
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
}
@media (max-width: 768px) {
    .profile-picture{
        height: 4rem;
        width: 4rem;
        border-radius: 50%;
    }
}
.user-icon{
    font-size: 4rem; 
    opacity: 80%; 
}
@media (max-width: 768px) {
    .user-icon{
        font-size: 40px;
    }
    
}
.img-container{
    object-fit: cover;
    object-position: top;
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
}
@media (max-width: 768px) {
    .img-container{
        height: 5rem;
        width: 5rem;
    }
    
}
label{
    height: 1.5rem;
    width: 12rem;
    color: black;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-transform: capitalize;
}
@media (max-width: 768px){
    label{
        height: 1.10rem;
        width: 6rem;
        font-size: x-small;
        font-family: monospace;
        text-transform: none;
    }
}
.in-row{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 30rem;
    height: 3rem;
}
@media (max-width:768px){
    .in-row{
        justify-content: space-around;
        width:20rem;
        height: 1rem;
    }
}
input{    
    background-color: #ffff;
    height: 1.85rem;
    width: 15rem;
    font-size: medium;
    font-family: sans-serif;
    border: 1px solid black;
    border: none;
    outline: 1px solid navajowhite;
    padding-left: 0.75rem;
    transition: 0.3s ease-in;
}
@media (max-width:768px){
    input{
        font-size: x-small;
        height: 1.10rem;
        width: 12rem;
    }
}
.savebtn{
    background: linear-gradient(to right, indigo, purple);
    width: 6rem;
    height: 2rem;
    border: none;
    border-radius: 1rem;
    font-weight: bolder;
    font-size: large;
    font-family: monospace;
    color: white;
    cursor: pointer;
    transition: 0.2s ease;
}
@media (max-width: 768px){
    .savebtn{
        width: 4rem;
        height: 1.25rem;
        font-size: x-small;
    }
}
.savebtn:active{
    transform: scale(1.1) ;
}
i{
    color: white;
}
@media (max-width: 768px) {
    i{
        font-weight: normal;
        font-size: small;
    }
    
}
.profilepicture-upload{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1;
    height: 12rem;
    width: 24rem;
    background-color: white;
    border-radius: 12px;
    gap: 1rem;
    padding: 1.35rem;
}
@media (max-width: 768px){
    .profilepicture-upload{
        height: 6rem;
        width: 12rem;
    }
}
.upload-picture-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
    width: 23rem;
}
@media (max-width: 768px){
    .upload-picture-container{
        gap:0.25;
        width: 14rem;
        justify-content: space-between;
        font-size: x-small;
    }
}
.picture-input{
    height: 1.5rem;
    width: 10rem;
    outline: none;
}
@media (max-width: 768px) {
    .picture-input{
        position: relative;
        right: 1rem;
        width: 6rem;
    }
    
}
.save-btn{
    background-color: green;
    color: white;
    font-size: 14px;
    font-family: monospace;
    font-weight: bold;
    height: 2rem;
    width: 6rem;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .save-btn{
        width: 3rem;
        font-size: x-small;
        height: 1.5rem;
    }
    
}
.cancel-btn{
    background-color: red;
    color: white;
    font-size: 14px;
    font-family: monospace;
    font-weight: bold;
    height: 2rem;
    width: 6rem;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}
@media (max-width: 768px){
    .cancel-btn{
        width: 3rem;
        font-size: x-small;
        height: 1.5rem;   
    }
}
.upload-picture-btns{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 20rem;
    height: 3rem;
}
@media (max-width: 768px){
    .upload-picture-btns{
        width: 12rem;
        height: 1.5rem;
    }
}
.inputs-and-button{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 20rem;
    width: 25rem;
}
@media (max-width: 768px) {
    .inputs-and-button{
        height: 12rem;
        width: 20rem;
        justify-content: space-between;
        gap: 1rem;
    }    
}
.create-useracount-container{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1;
    top: 5rem;
    background-color: white;
    height: 20rem;
    width: 45rem;
    border-radius: 12px;
    border: 2px solid forestgreen;
    gap: 20px;
}
.account-created{
    font-weight: bolder;
    font-size: 1.45rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.okay-btn{
    height: 2rem;
    width: 6rem;
    text-transform: capitalize;
    font-weight: bolder;
    color: white;
    background-color: forestgreen;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.hamburger-icon{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 3rem;
    width: 5rem;
    font-size: 30px;
    cursor: pointer;
    color: white;
}
.side-bar{
    position: fixed;
    z-index: 1;
    top:1rem;
    background-color: rgb(240, 240, 166);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 0.25rem;
    align-items: center;
    height: 25rem;
    width: 25rem;
    transition: 0.3s ease-in;
}
.sidebar-top-container{
    position: relative;
    top:1rem;
    width: 23rem;
    height: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.close-icon{
    text-align: center;
    width:2rem;
    color: white(205, 29, 29);
    font-weight: bolder;
    font-size: 1.85rem;
    cursor: pointer;
    background-color: red;
}
.sidebar-maincontent{
    position: relative;
    top:2rem;
    padding-top:1rem;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 18rem;
    width: 23rem;
    gap:1rem;
}
.sidebar-links{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    position: relative;
    top:1rem;
    left:1rem;
    font-weight: bold;
    font-size: large;
    letter-spacing: 2px;
    display: flex;
    height: 1.2rem;
    width: 15rem;
    transition: 0.4s ease;
    text-decoration: none;
    color: black;
}
.sidebar-links:hover{
    color: blue;
    transform: scale(1.01);
}
.link-line{
    height: 10px;
    width: 20rem;
    background-color: black;
    border:1px solid black;
}
.anchor-and-hr{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 2rem;
    width:15rem;
    gap:1.2rem;
}
.profile-picture-delete-container{
    position: absolute;
    z-index: 1;
    top: 10rem;
    height: 15rem;
    width: 35rem;
    background-color: white;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:2rem;
}
.button-con{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width:10rem;
    gap:2rem;
}
.ok-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    color: white;
    font-size: 25px;
    background-color: forestgreen;
    cursor: pointer;
    transition: 0.4s ease-in;
}
.cancel-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 3rem;
    width: 3rem;
    color: white;
    font-size: 25px;
    background-color: red;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s ease-in;
}
.ok-icon:hover{
    transform: scale(1.10);
    box-shadow: 2px 6px 10px rgb(11, 178, 2);
}
.cancel-icon:hover{
    transform: scale(1.10);
    box-shadow: 2px 5px 10px rgb(240, 9, 9);
}
.profile-delete-span{
    font-weight: bolder;
    font-size: larger;
    text-transform: capitalize;
}