﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

.login-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 80px;
    background-color: #fff;
}

.login-left-box {
    width: 63%;
}

    .login-left-box img {
        width: 80%;
    }

.login-right-box {
    height: 100%;
    width: 37%;
    background-color: #f5f6fa;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.idencia-logo {
    width: 42%;
    margin-bottom: 60px;
}

.welcome-text {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 10px;
}

.login-right-box form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-input,
.btn-login {
    width: 70%;
    height: 42px;
    border-radius: 30px;
    border: 0.5px solid #d7d7d9;
    outline: none;
    padding-left: 20px;
    margin-top: 20px;
}

.btn-login {
    border: 0.5px solid #3372fa;
    color: #fff;
    background-color: #2597fe;
    margin-top: 30px;
    cursor: pointer;
    padding-left: 0px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.line {
    width: 70%;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    div

{
    height: 1px;
    width: 45%;
    background-color: #d9d9d9;
}

p {
    font-weight: 500;
}

}

.other-login-btn-box {
    width: 70%;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    div

{
    height: 50px;
    width: 80px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    cursor: pointer;
    margin: 0px 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

}

.other-login-btn-img {
    width: 25px;
}

.register-link {
    margin-top: 50px;
    color: #1890ff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.layout-container {
    width: 100%;
    height: 100vh;
    padding: 15px 0px 15px 15px;
    background-color: #2b2b2b;
    display: flex;
}

.main-container {
    width: 100%;
    overflow: auto;
    height: 100%;
    background-color: #fff;
    border-top-left-radius: 38px;
    border-bottom-left-radius: 38px;
    padding: 0px 30px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid #cfcfcf;
}

    .navbar h3 {
        font-size: 18px;
        margin-top: 5px;
    }

.nav-icon {
    width: 35px;
    cursor: pointer;
    margin-left: 15px;
}

.username {
    margin-left: 10px;
    cursor: pointer;
}

    .username h5 {
        font-size: 14px;
        font-weight: 500;
    }

    .username p {
        font-size: 12px;
        margin-top: 2px;
    }

.flex {
    display: flex;
    align-items: center;
}

.table-section {
    margin-top: 30px;
}

.table-head,
.table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    border-bottom: 1px solid #cfcfcf;
}

.th,
.tr {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 1.5px solid #cfcfcf;
    padding-right: 15px;
}

.tr {
    border-right: none;
}

    .th p:first-of-type,
    .tr p:first-of-type {
        font-weight: 500;
        color: #2f2f2f;
        margin-left: 20px;
        font-size: 14px;
    }

    .tr p:first-of-type {
        font-weight: 400;
    }

.blue-text {
    color: #1890ff !important;
}

.checkbox {
    width: 13px;
    height: 13px;
}

.th-last {
    border-right: none;
    display: flex;
    justify-content: flex-start;
    img

{
    width: 15px;
    margin-left: 20px;
    cursor: pointer;
}

}

.th-last img:last-child {
    margin-left: 40px;
}

.sorter {
    width: 12px;
    cursor: pointer;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .login-container {
        padding: 50px;
    }

    .login-left-box {
        display: none;
    }

    .login-right-box {
        width: 100%;
    }

    .login-input {
        margin-top: 30px;
        height: 50px;
    }

    .btn-login {
        height: 50px;
        margin-top: 40px;
    }

    .other-login-btn-box div {
        height: 60px;
        width: 100px;
    }

    .other-login-btn-img {
        width: 30px;
    }

    .register-link {
        font-size: 16px;
    }
}

/* CSS for the dropdown menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Adjust dropdown position for small screens */
@media screen and (max-width: 768px) {
    .dropdown-content {
        position: relative;
        width: auto;
        box-shadow: none;
    }
}

/* Show dropdown when hovering over its parent */
/* .navbar:hover .dropdown-content {
  display: block;
} */

/* Styles for dropdown links */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

    .dropdown-content a:hover {
        background-color: #f1f1f1;
    }





.filter-section {
    .table-section

{
    height: 100px;
    margin-top: 30px;
    justify-content: space-between;
}

}
/*
.filter-search {
    width: 250px;
    height: 34px;
    border-radius: 20px;
    border: 1px solid #cfcfcf;
}

    .filter-search img {
        width: 32px;
    }

    .filter-search input {
        height: 100%;
        width: 85%;
        border: none;
        outline: none;
        background: transparent;
        padding-left: 10px;
    }
 
.filter-btn {
    padding: 8px 15px;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid #cfcfcf;
    cursor: pointer;
    margin-left: 15px;
} */

    .filter-btn p {
        font-size: 12px;
        margin-left: 10px;
    }
/*
    .filter-btn img {
        width: 15px;
    }
 
.add-btn {
    background-color: #1890ff;
    color: #fff;
    border: none;
} */

.loginloader {
    display: none;
    position: absolute;
    transform: translate(-50%, -50%);
    padding-left:220px;
    padding-top:13px;
}

.loginloading {
    border: 3px solid #ccc;
    width: 15px;
    height: 15px;
    border-radius: 70%;
    border-top-color: white;
    border-left-color: white;
    animation: spin 1s infinite ease-in;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}