:root{
    --default-color-white: #ffffff;
    --default-color-black: #000000;

    --primary-color: #9b0000;
    --secondary-color: #1c1c1c;

    --txt-black: #000000;
    --txt-dark-grey: #424242;
    --txt-white: #ffffff;

    --color-ash: #eeeeee;

    --width: 80%;
    --mobile-width: 90%;
    --wide-screen: 100%;

    --xx-large: 120px;
    --normal-ft-size:15px;

    --primary-txt: montserat;

    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.473);

    /*font-family: 'Cormorant', serif; Headings h1 - h6*/
  }
    *{
        padding: 0;
        margin: 0;
        text-decoration: none;
        list-style: none;
        box-sizing: border-box;
    }

    html{
        font-family: montserat;
        scroll-behavior: smooth;
    }

    body{
        background: var(--color-ash);
        overflow-x: hidden;
    }

body{
    background: #01003823;
}

a{
    text-decoration: none;
}

.main-container{
    display: flex;
    gap: 20px;
}

.container{
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #04032e23;
}

.content-holder{
    width: 90%;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 20px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
}

.content-holder .component{
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #000;
}

.content-holder .component .c_icon{
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 25px;
}

.sidebar{
    width: 200px;
    height: 100%;
    background:  #010038;
}

.usr-profile{
    width: 200px;
    height: 200px;
    background: #ffc800;
}

.upload{
    width: 140px;
    position: relative;
    margin: auto;
    top: 10px;
    right: 10px;
}

.upload img{
    border-radius: 50%;
    border: 8px solid #DCDCDC;
    width: 155px;
    height: 155px;
}

.upload .rightRound{
    position: absolute;
    bottom: 0;
    right: 0;
    background: #00B4FF;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.upload .leftRound{
    position: absolute;
    bottom: 0;
    left: 0;
    background: red;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.upload .fa{
    color: white;
}

.upload input{
    position: absolute;
    transform: scale(2);
    opacity: 0;
    cursor: pointer;
}

.upload input::-webkit-file-upload-button, .upload input[type=submit]{
    cursor: pointer;
}

.controls .title{
    color: var(--default-color-white);
}

.icon i{
    color: var(--color-ash);
    font-size: 25px;
}

.item{
    display: flex;
    padding: 10px;
    gap: 15px;
}

.item span a{
    color: var(--default-color-white);
    line-height: 30px;
}

/*Acc*/
.flex{
    display: flex;
    justify-content: column;
    margin-top: 50px;
}
.inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin-left: 20px;
}
.inputBox span{
    font-size: 12px;
    color: #ffffff;
}
.input, select, .create_acc{
    width: 50%;
    padding: 8px; 
    font-size: 12px;
}
/*Acc End*/

/*Login*/
.container-2{
    width: 75%;
    display: flex;
    gap: 50px;
    background: #ff0000;
    margin: 10% auto;
}
.column{
    width: 50%;
    background: yellow;
    padding: 20px;
    margin: 10px;
}
/*Login end*/

/*Create Account*/
.container-3{
    width: 75%;
    display: flex;
    gap: 50px;
    background: #ff0000;
    margin: 10% auto;
}
.column-2{
    width: 50%;
    background: yellow;
    padding: 20px;
    margin: 10px;
}
/*Create Account End*/