@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.container {
    display: flex;
    height: 100vh;
}

.sideBar {
    display: flex;
    flex-direction: column;
    width: 72px;
    height: 100vh;
    background-image: #fff;
    padding: 12px;
    align-items: center;
    justify-content: space-between;
    border-right: 1px solid #e9e9e9;
}

.shortCuts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.shortCuts > .logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shortCuts > .logo > img {
    width: 35px;
    height: 35px;
}

.shortCuts > a {
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-decoration: none;
    color: #000;
}

.shortCuts > a > i {
    font-size: 24px;
}

.settings {
    display: flex;
}

.settings > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
    color: #000;
}

.settings > a > i {
    font-size: 24px;
}

.main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.navBar {
    padding: 0 16px 0 24px;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #e9e9e9;
    display: flex;
}

.navContent {
    display: flex;
    width: 100%;
    padding: 12px 0;
}


.navContent > .input {
    flex-grow: 1.5;
}

.navContent > .user {
    flex-grow: 0.1;
}

.input-filter {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    outline: none;
    padding: 16px;
    color: #333333;
    background-color: #f1f1f1;
    font-size: 16px;
}

.user {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user > a > img {
    width: 50px;
    height: 50px;
}

.content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.header {
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #e9e9e9;
    padding: 0 16px;
    display: flex;
    align-items: center;
}

.header h1 {
    font-size: 20px;
    font-weight: 500;
}

.form-content {
    display: flex;
    width: 100%;
    height: 80vh;
    justify-content: center;
    align-items: center;
}

.form-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    gap: 10px;
}

.form-1 label {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 450px;
    background-color: #e9e9e9;
    text-align: center;
    border-radius: 35px;
    border: 2px dashed #cfcfcf;
}

.file-name-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#file-name {
    font-size: 14px;
    color: #555;
}

.form-2 {
    display: flex;
    height: 525px;
    width: 350px;
    justify-content: space-around;
    flex-direction: column;
    padding: 24px;
}

.form-2 input {
    padding: 16px;
    border-radius: 15px;
    border: 1px solid #cfcfcf;
    outline: none;
}

.form-2 select {
    border: 1px solid #cfcfcf;
    padding: 5px;
    outline: none;
    width: 100%;
    border-radius: 15px;
}

.form-2 select::-webkit-scrollbar {
    background-color: transparent;
}

.form-2 select option:checked {
    background-color: #5755ff;
    color: #fff;
}

.form-2 button {
    padding: 16px;
    border-radius: 15px;
    background-color: #5755ff;
    color: #fff;
    border: none;
    cursor: pointer;
}