.logo {
    width: 65%;
    height: auto;
}


.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    z-index: 1;
}

.remember-me {
    display: flex;
    align-items: center;
    color: #555;
}

.remember-me input {
    margin-right: 5px;
}

.forgot-password {
    color: #2575fc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #1a5dc8;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.login-btn:hover {
    background: linear-gradient(135deg, #5a0dc8 0%, #1a5dc8 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.login-btn:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    color: #777;
    font-size: 14px;
    z-index: 1;
}

.login-footer a {
    color: #2575fc;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

.login-loader {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.login-loader i {
    color: #2575fc;
    font-size: 24px;
    animation: spin 1s linear infinite;
}








    

    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        font-family: Arial, sans-serif;
    }

    th, td {
        text-align: left;
        border-bottom: 1px solid #ddd;
        padding: 10px;
    }

    th {
        font-weight: 600;
        color: #333;
    }

    tr:last-child td {
        border-bottom: none;
    }

    tr:hover {
        background-color: #f5f5f5;
    }