:root{
    font-size: 16px;
    /* main colors */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --main-color: #027382;
    --secondary-color: #ECECEC;

    --color-1: #E7E2DC;
    --color-2: #C3DFE2;
    --color-3: #ABCED2;
    --color-4: #ABCED2;
    --color-5: #27888E;
    --color-6: #2D5354;

    /* or */
    --color-10: #F3D1B8;
    --color-20: #E0C1AD;
    --color-30: #D7B08F;
    --color-40: #EEE6D1;
    --color-50: #E6E2D6;
    --color-60: #C5C0AA;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.content{
   margin-left: 15rem;
   display: flex;
   flex-grow: 1;
   padding: 4rem;
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


/* CONTENT */

.submit-div{
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: end;
}

.submit-div button{
    width: 7rem;
}

.change-profile{
    padding-left: 8rem;
    padding-right: 8rem;
}

.gege{
    border-radius: 5rem;
    width: 4rem;
    height: 4rem;
}

/* IMAGE */

.change-image{
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.change-image div{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 2rem;
    width: fit-content;
    height: auto;
    padding: 1rem;
    border: 0.5px solid silver;
}

.change-image span{
    margin-right: 4rem;
    font-size: 1rem;
    font-weight: 700;
}

#bio-double-input{
    height: 3rem; /* 6rem */
}

/* MODALS */

/* MENU */

.menu-table ul{
    list-style: none;
}
.menu-table ul li{
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-table ul li button{
    padding: 1rem;
    padding-left: 6rem;
    padding-right: 6rem;
    background: transparent;
    font-weight: 400;
    font-size: 1rem;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.menu-table ul li input{
    display: none;
}
.menu-table ul li a{
    padding: 1rem;
    padding-left: 6rem;
    padding-right: 6rem;
    background: transparent;
    font-weight: 400;
    font-size: 1rem;
    width: 100%;
    height: 100%;
    text-align: center;
    user-select: none;
    cursor: pointer;
    color: black;
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.menu-table ul li button:active{
    background-color: #9b9b9b;
}
.menu-table ul li a:active{
    background-color: #9b9b9b;
}
.menu-table ul li:first-child button{
    border-radius: 1rem 1rem 0 0;
}
.menu-table ul li:last-child button{
    border-radius: 0 0 1rem 1rem;
}

/* RESPONSIVE */

@media(max-width: 950px){
    .content{
        padding: 1rem;
    }
    .change-profile{
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media(max-width: 478px) {
    :root{
        font-size: 12px;
    }
    .content{
        margin-left: 0;
        display: flex;
        flex-grow: 1;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    .submit-div{
        margin-top: 4rem;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .submit-div button{
        width: 7rem;
    }
}