body {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: var(--body-color);
}

.wrapper {
    z-index: 10;
    /* width: 360px; */
    min-height: 100px;
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: var(--first-shadow);
    padding: 20px 50px;
    margin: 15px;
}

.wrapper-2 {
    width: 350px;
    padding: 30px;
}

.logo-card {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 20px;
}

.logo-left {
    width: 60px;
}

.user-logo-left {
    width: 50px;
}

.logo-right {
    font-size: 50px;
    font-weight: bold;
}

.user-logo-right {
    font-size: 40px;
    position: relative;
    top: 3px;
}

.logo-right span {
    color: var(--primary-color);
}

.login-card {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.login-left {
    width: 280px;
}

@media only screen and (max-width: 769px) {
    .login-right {
        display: none;
    }

    .login-left {
        width: 100%;
    }

    .wrapper {
        padding: 20px;
        width: 360px;
    }

    .wrapper-2 {
        width: 360px;
    }

    .logo-left {
        width: 50px;
    }

    .logo-right {
        font-size: 40px;
        position: relative;
        top: 3px;
    }
}

.heading p {
    color: gray;
}

.heading i {
    font-size: 30px;
    color: #4D61FC;
}

label {
    color: #AAA8BB;
    font-weight: 400;
}

.row {
    min-width: 5px;
    min-height: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.custom-checkbox {
    width: 17px;
    height: 17px;
    border-radius: 5px;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-right: 5px;
}

input[type=checkbox]:checked~.custom-checkbox {
    background-color: #31285C;
}

input[type=checkbox]:checked~.custom-checkbox::before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    display: inline-block;
    font-weight: 900;
    color: #ffffff;
}

.captcha-div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.captcha-refersh {
    border: none;
    border-radius: 2px;
    color: white;
    padding: 5px;
    cursor: pointer;
    background-color: var(--primary-color);
}


.system {
    width: 450px;
    animation: zoom-in-zoom-out 8s ease infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.05, 1.05);
    }

    100% {
        transform: scale(1, 1);
    }
}

.m-b-15 {
    margin: 0 0 10px 0;
}

.time-limit-exit-div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.time-limit-exit-img {
    width: 100%;
}

.time-limit-exit-text {
    color: gray;
}

.input-group {
    position: relative;
}


.admin-modal-title {
    font-weight: 500;
    font-size: 18px;
}

.admin-container {
    align-items: center;
}

.company-select {
    .company-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 20px;
        list-style: none;
    }
    
    .company-item {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        background: #ffffff;
        padding: 10px 15px;
        border-radius: 6px;
        /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #e2e8f0;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }
    
    .company-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--primary-color);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.3s ease;
    }
    
    .company-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-color: #cbd5e1;
    }
    
    .company-item:hover::before {
        transform: scaleY(1);
    }
    
    .company-logo {
        width: 50px;
        height: 50px;
        border-radius: 6px;
        object-fit: contain;
        border: 1px solid #e2e8f0;
        padding: 5px;
        background: white;
        flex-shrink: 0;
    }
    
    .company-name {
        font-weight: 500;
        font-size: 1rem;
        flex-grow: 1;
    }
    
    .company-link {
        color: #64748b;
        transition: all 0.2s ease;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .company-link:hover {
        color: var(--primary-color);
        background: #e0e7ff;
    }
    
    
    @media (max-width: 600px) {
        
        .company-item {
            padding: 1rem;
            gap: 1rem;
        }
        
        .company-logo {
            width: 40px;
            height: 40px;
        }
    }
}