.logoImage{
    height: 6rem;
    width: 6rem;
    border-radius: 100px;
}

body{
    background-color: #1c1e29;
    margin: 0;
    padding: 0;
}

.homePageWrapper{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color : #fff
}

.formWrapper{
    background-color: #282a36;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
}

.inputGroup{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}
.inputBox{
    margin: 5px 0px;
    height: 28px;
    border-radius: 5px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-weight: bold;
    font-size: 16px;
}

.btn{
    border: none;
    border-radius: 5px;
    padding: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.joinBtn{
    font-weight: bold;
    width: 80px;
    height: 30px;
    margin-top: 3px;
    margin-left: auto;
    background-color: #3acc72;
}

.joinBtn:hover{
    background-color: #36a360;
}

.inputInfo{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.mainLabel{
    margin-top: 20px;
    margin-bottom: 4px;
}

footer{
    position: fixed;
    bottom: 0;
    padding: 20px;
}

.createNewBtn{
    background: none;
    border: none;
    padding: 0px;
    text-decoration: underline;
    color: #3acc72;
    transition: all 0.4s ease-in-out;
}

.createNewBtn:hover{
    cursor: pointer;
    color: #36a360;
}

.mainWrapper{
    display: flex;
    flex-direction: row;
    height : 97vh;
}


.sideBar{
    height: 100vh;
    padding: 0px 15px;
    width: 12%;
    display: flex;
    align-items: stretch;
    background-color: #282a36;
    font-weight: bold;
    color: white;
    flex-direction: column;
}

.codeEditorWrap{
    width: 85.5%;
    height: 97vh;
}

.sideBarLogo{
    height: 4rem;
    width: 4rem;
    border-radius: 100px;
}

.sideBarUpper{
    height: 90%;
}

.sideBarUpper h3{
    cursor: default;
    font-size: 20px;
    margin: 10px auto;
    padding: 5px 0px;
}

.sideBarSeprator{
    padding: 10px;
    border-bottom: 2px solid grey;
}

.clientList{
    display : flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}


.clientCard{
    cursor:default;
    font-size: 10px;
    font-family:sans-serif;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.clientCardUsername{
    padding-top: 10px;
}

.sideBarLower{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.sideBarLower .btn{
    margin-bottom: 10px;
    font-weight: bold;
    height: 30px;
}

.leaveBtn{
    background-color: #3acc72;
}

.leaveBtn:hover{
    background-color: #36a360;
}

.copyBtn:hover{
    background-color: rgba(255, 255, 255, 0.692);
}

.CodeMirror{
    min-height: 100vh;
    width: 100%;
}