body {
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
    box-shadow: 1px 1px 10px 2px lightgray;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.ul-1 {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
    padding-top: 15px;
    cursor: pointer;
}

.ul-2{
    list-style: none;
    padding-top: 15px;
    padding-right: 40px;
    font-size: 22px;
    color: rgb(120, 120, 120);
}
.ul-2:hover {
    color: black;
    transition: 0.1s ease-in;
}


.sidebar {
    width: 20%;
    height: 100vh;
    box-shadow: 0px 1px 10px 2px lightgray;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    /* margin-top: 20px; */
    background-color: rgba(90, 228, 216, 0.92);
    padding-top: 15px;
    color: white;
    
}

.sidebar li button {
    color: white;
}

.sidebar li {
    list-style-type: none;
    padding-bottom: 4px;
    
}

.sidebar li:first-child {
    padding-left: 12px;

}

.sidebar li:active {
    background-color: rgb(37, 210, 192);
    width: 300px;
    border-radius: 7px;
}

.main-heading {
    position: absolute;
    top: 85px;
    left: 440px;
    color: rgb(34, 34, 34);
    border-right: 1px solid rgb(169, 169, 169);
    padding-right: 10px;
}

.form-heading{
    border-bottom: 1px solid rgb(173, 173, 173);
}

.form-heading h4 {
    color: rgb(34, 34, 34);
    margin: 12px 20px;
    padding-bottom: 6px;
}

.form-layout {
    position: absolute;
    top: 150px;
    left: 440px;
    box-shadow: 1px 1px 10px 2px lightgray;
    height: 700px;
    width: 1440px;
}